/* Color Variables */
        :root {
            --primary: #ffac0a;
            --white: #ffffff;
            --black: #000000;
            --accent-blue: #39B7FF;
            --accent-green: #2ecc71;
            --accent-dark-blue: #0085A8;
            --dark-bg: #0A1F2D;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--white);
            overflow-x: hidden;
            position: relative;
            background-image: radial-gradient(circle at 20% 30%, rgba(10, 31, 45, 0.8) 0%, rgba(10, 31, 45, 0.95) 80%);
        }

        /* Background Image */
        #background-image {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: background-image 0.8s ease-in-out;
            z-index: -2;
            background-image: url('https://images.unsplash.com/photo-1501555088652-021faa106b9b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(10, 31, 45, 0.9) 0%, rgba(10, 31, 45, 0.6) 50%, rgba(10, 31, 45, 0.9) 100%);
            z-index: -1;
        }

        /* Header Styles - NAVBAR SIZE REDUCED */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px; /* Reduced padding */
            position: relative;
            z-index: 10;
            background: rgba(10, 31, 45, 0.8);
            backdrop-filter: blur(10px);
        }

        /* LOGO STYLES */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo {
            height: 45px; /* Adjusted for logo */
            width: auto;
            transition: all 0.3s ease;
        }
        
        .logo-text {
            font-size: 26px; /* Reduced font size */
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(255, 172, 10, 0.5);
        }

        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }

        nav ul li {
            margin: 0 12px; /* Adjusted spacing */
        }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 15px; /* Reduced font size */
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* Login Button */
        .login-btn {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--accent-blue);
            border-radius: 30px;
            padding: 6px 20px; /* Reduced padding */
            font-size: 14px; /* Reduced font size */
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-left: 15px; /* Reduced margin */
        }

        .login-btn:hover {
            background: rgba(57, 183, 255, 0.2);
            transform: translateY(-2px);
        }

        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 6px 15px; /* Reduced padding */
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .search-box:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 172, 10, 0.3);
        }

        .search-box input {
            background: transparent;
            border: none;
            color: var(--white);
            padding: 5px 8px; /* Reduced padding */
            width: 140px; /* Slightly reduced width */
            font-size: 14px; /* Reduced font size */
            outline: none;
        }

        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
        }

        .search-box i {
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-box:hover i {
            color: var(--primary);
        }

        /* Page Title */
        .page-header {
            text-align: center;
            padding: 100px 20px 60px;
            position: relative;
            z-index: 5;
        }
        
        .page-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--primary);
            text-shadow: 0 0 20px rgba(255, 172, 10, 0.3);
        }
        
        .page-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Experiences Grid */
        .experiences-container {
            max-width: 1200px;
            margin: 0 auto 100px;
            padding: 0 20px;
        }
        
        .filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 10px 25px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.15);
            cursor: pointer;
            transition: all 0.3s;
            font-size: 16px;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: rgba(255, 172, 10, 0.2);
            border-color: var(--primary);
        }
        
        .experiences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .experience-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 172, 10, 0.3);
        }
        
        .card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--accent-blue);
        }
        
        .card-meta span {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .card-meta i {
            margin-right: 5px;
        }
        
        .card-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .card-price {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-green);
            margin-bottom: 20px;
        }
        
        .card-buttons {
            display: flex;
            gap: 15px;
        }
        
        .card-button {
            flex: 1;
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: block;
        }
        
        .btn-book {
            background: linear-gradient(135deg, var(--primary), #ff8c00);
            color: var(--dark-bg);
            border: none;
        }
        
        .btn-book:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 172, 10, 0.4);
        }
        
        .btn-details {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--accent-blue);
        }
        
        .btn-details:hover {
            background: rgba(57, 183, 255, 0.15);
            transform: translateY(-3px);
        }
        
        .sold-out {
            background: #e74c3c;
            cursor: not-allowed;
            opacity: 0.7;
            color: white;
            border: none;
        }
        
        .sold-out:hover {
            transform: none;
            box-shadow: none;
        }
        
        /* Booking Modal - MADE SCROLLABLE */
        .booking-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 31, 45, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            overflow: auto; /* Allow scrolling */
        }
        
        .booking-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px;
            width: 100%;
            max-width: 600px;
            max-height: 90vh; /* Set max height for scrollability */
            overflow-y: auto; /* Make content scrollable */
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        
        .close-booking {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .close-booking:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }
        
        .booking-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .booking-header h2 {
            font-size: 32px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .booking-header p {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .booking-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group.full-width {
            grid-column: span 2;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--white);
            font-weight: 500;
        }
        
        .form-group input, 
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: var(--white);
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.12);
        }
        
        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .booking-summary {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            grid-column: span 2;
        }
        
        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .summary-total {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: bold;
            font-size: 1.2rem;
            color: var(--primary);
        }
        
        .submit-booking {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary), var(--accent-green));
            border: none;
            border-radius: 8px;
            color: var(--dark-bg);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
            grid-column: span 2;
        }
        
        .submit-booking:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 172, 10, 0.4);
        }
        
        /* NEW: Details Modal */
        .details-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 31, 45, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .details-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px;
            width: 100%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        
        .close-details {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .close-details:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }
        
        .details-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .details-header h2 {
            font-size: 32px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .details-header p {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .details-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 25px;
        }
        
        .details-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .details-section {
            margin-bottom: 20px;
        }
        
        .details-section h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 8px;
        }
        
        .details-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--accent-blue);
        }
        
        .details-meta span {
            display: flex;
            align-items: center;
            font-size: 1rem;
        }
        
        .details-meta i {
            margin-right: 8px;
        }
        
        .details-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .details-price {
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent-green);
            margin-bottom: 25px;
            text-align: center;
        }
        
        .details-button {
            display: block;
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary), #ff8c00);
            border: none;
            border-radius: 8px;
            color: var(--dark-bg);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            text-decoration: none;
            margin-top: 20px;
        }
        
        .details-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 172, 10, 0.4);
        }
        
        /* Login Modal */
        .login-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 31, 45, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px;
            width: 100%;
            max-width: 450px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .modal-content.active {
            transform: scale(1);
            opacity: 1;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s;
        }

        .close-btn:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .modal-header h2 {
            font-size: 32px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .modal-header p {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--white);
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: var(--white);
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.12);
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary), var(--accent-green));
            border: none;
            border-radius: 8px;
            color: var(--dark-bg);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 172, 10, 0.4);
        }

        .modal-footer {
            text-align: center;
            margin-top: 25px;
            color: rgba(255, 255, 255, 0.7);
        }

        .modal-footer a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: all 0.3s;
        }

        .modal-footer a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        /* Footer Styles */
        footer {
            background-color: #000000;
            color: #ffffff;
            padding: 60px 20px 30px;
            position: relative;
        }

        .footer-wave {
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .footer-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 30px;
        }

        .footer-wave .shape-fill {
            fill: #0A1F2D;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto 40px;
            gap: 40px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
        }
        
        /* FOOTER LOGO STYLES */
        .footer-logo-container {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo {
            height: 60px;
            width: auto;
            margin-right: 15px;
        }
        
        .footer-logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: #fff;
        }
        
        .footer-logo-text span {
            color: #FFB400;
        }

        .footer-about {
            max-width: 300px;
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            color: #FFB400;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #43B0F1;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            color: #43B0F1;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #FFB400;
            transform: translateX(5px);
        }

        .footer-links a:hover i {
            color: #FFB400;
        }

        .footer-contact {
            color: #ddd;
            line-height: 1.8;
        }

        .footer-contact p {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .footer-contact i {
            color: #43B0F1;
            margin-right: 12px;
            font-size: 18px;
            min-width: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #222;
            color: #FFB400;
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .social-links a:hover {
            background: #FFB400;
            color: #000;
            transform: translateY(-5px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid #333;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .copyright {
            color: #999;
            font-size: 14px;
        }

        .powered-by {
            color: #FFB400;
            font-weight: 600;
            font-size: 16px;
        }

        .back-to-top {
            background: #FFB400;
            color: #000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            bottom: 30px;
            right: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 100;
            display: none;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            background: #43B0F1;
            color: white;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-col {
                min-width: 100%;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .back-to-top {
                right: 20px;
                bottom: 20px;
            }
            
            .booking-form {
                grid-template-columns: 1fr;
            }
            
            .form-group.full-width {
                grid-column: span 1;
            }
            
            .card-buttons {
                flex-direction: column;
            }
            
            /* Details modal responsive */
            .details-body {
                grid-template-columns: 1fr;
            }
        }        
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .experiences-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 900px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .page-subtitle {
                font-size: 1.2rem;
            }
            
            .details-image {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 15px 20px;
                gap: 15px;
            }
            
            .logo {
                height: 40px; /* Adjusted for mobile */
            }
            
            .logo-text {
                font-size: 24px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 8px;
            }
            
            .login-btn {
                margin: 10px 0 0 0;
                width: 100%;
            }
            
            .page-header {
                padding: 80px 20px 40px;
            }
            
            .experiences-grid {
                grid-template-columns: 1fr;
            }
            
            .card-buttons {
                flex-direction: row;
            }
            
            /* Footer logo */
            .footer-logo-container {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-logo {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }

        @media (max-width: 480px) {
            nav ul li {
                margin: 0 6px;
            }
            
            .search-box {
                width: 100%;
                margin-top: 10px;
            }
            
            .search-box input {
                width: 100%;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .page-subtitle {
                font-size: 1rem;
            }
            
            .filters {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 100%;
            }
            
            .card-buttons {
                flex-direction: column;
            }
            
            .logo-text {
                font-size: 20px;
            }
        }

        /* Add form status styles */
        .form-status {
            display: none;
            padding: 15px;
            margin: 20px 0;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
        }
        
        .form-status.success {
            display: block;
            background: rgba(46, 204, 113, 0.15);
            border: 1px solid #2ecc71;
            color: #2ecc71;
        }
        
        .form-status.error {
            display: block;
            background: rgba(231, 76, 60, 0.15);
            border: 1px solid #e74c3c;
            color: #e74c3c;
        }