body {
    background-color: #000 !important;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body, body * {
    color: #fff !important;
}

.container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

header {
    background-color: #111;
    padding: 15px 20px;
    border-bottom: 2px solid gold;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-container > * {
    margin: 5px;
}

.zip-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}

.zip-search input[type="text"] {
    background-color: #222;
    color: white;
    border: 1px solid gold;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.zip-search input[type="submit"] {
    background-color: gold;
    color: black;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.zip-search input[type="submit"]:hover {
    background-color: #fff;
    color: #000;
}

.header-container a {
    background-color: gold;
    color: black;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container a i {
    font-size: 24px;
    color: black;
}

.header-container a:hover {
    background-color: #fff;
    color: #000;
}

.listing {
    background-color: #000;
    border: solid gold;
    border-radius: 10px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
    color: black;
}

.listing, .listing * {
    color: #fff !important;
}

.carousel-inner, .carousel-inner *, .carousel-item, .carousel-item * {
    color: #fff !important;
}

.title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: gold;
    margin-bottom: 20px;
}

.carousel {
    position: relative;
    margin: auto;
    border: 2px solid gold;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.carousel-inner {
    width: 100%;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: gold;
    border-radius: 50%;
    transform: scale(0.8);
}

.description-box {
    background-color: #222;
    color: #fff;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid gold;
    overflow-y: auto;
    max-height: 200px;
}

.details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.details p {
    margin: 5px 0;
    color: #fff !important;
}

.share-buttons {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    margin-top: 20px;
}

.share-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: gold;
    color: black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.share-buttons a:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .listing {
        padding: 15px;
    }

    .carousel {
        max-width: 100%;
    }

    .description-box {
        max-height: 150px;
    }

    .details {
        flex-direction: column;
    }
    
    .brspecial {
        margin-bottom: 20px;
    }
}
