
        body {
            color: white;
            font-family: 'Roboto', sans-serif;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('flame.png'), linear-gradient(to bottom, black, #444);
            background-position: center;
            background-size: cover;
        }

        nav {
            
        }

        nav .navbar-brand {
            font-size: 1.5rem;
            color: #F3773C;
        }

        .btn-primary {
            background-color: #F3773C;
            height: 50px!important;
            border-radius: 5px!important;
            border: none;
        }

        .btn-primary:hover {
            background-color: #ffffff;
            color: #444;
        }

        nav .nav-link {
            color: #fff;
            transition: color 0.3s;
            height: 50px!important;
        }

        nav .nav-link:hover {
            color: #444;
            height: 50px!important;
        }

        .hero {
            text-align: center;
            padding: 10px 20px;
            color: white;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .upload-section {
            background: rgb(198,198,198);
            background: linear-gradient(291deg, rgba(198,198,198,1) 0%, rgba(252,252,252,1) 35%, rgba(238,238,238,1) 100%);
            border-radius: 10px;
            padding: 30px;
            margin: 20px;
            color: white;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
        }

        .btn-submit {
            background-color: #F3773C;
            border: none;
        }

        .btn-submit:hover {
            background-color: #e69500;
        }

        .form-check-label {
            color: white;
        }

        footer {
            text-align: center;
            padding: 20px;
            background-color: black;
            color: grey;
        }
        .orange {
            color: #F3773C;
        }
        .flame-rating {
            display: flex;
            justify-content: left;
            gap: 5px;
            cursor: pointer;
        }

        .flame-rating i {
            font-size: 2rem;
            color: grey;
            transition: color 0.3s;
        }

        .flame-rating i.selected {
            color: #F3773C;
        }
        .bmc-btn {
            height: 50px!important;
            border-radius: 5px!important;
        }
        .custom-file-upload {
            max-width: 100%;
            margin: 0 auto;
        }
    
        #dropZone {
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
    
        #dropZone.bg-light {
            background-color: #f8f9fa;
        }
    
        .border-dashed {
            border-style: dashed;
        }