[data-bs-theme="dark"] {
    background-color: black;
}

.btnMode {
    display: inline-block;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid #EE8130;
    color: #EE8130;
}

.btnMode:hover {
    background-color: #EE8130;
    color: white;
    border: 2px solid #EE8130;
}

.btnFun {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid #EE8130;
    color: #EE8130;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 100px;
}

.btnFun:hover {
    background-color: #EE8130;
    color: white;
}

.carousel-inner img {
    max-height: 500px;
    object-fit: cover;
}


body {
    font-family: 'Helvetica', sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
    margin: 0;
}

.navbar-brand,
.nav-link,
.dropdown-item {
    font-weight: 600;
    color: #EE8130 !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.dropdown-item:hover {
    color: #ff6f61 !important;
}


h1,
.display-3 {
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #EE8130;
    margin-top: 10px;
}

.card {
    padding: 30px;
    text-align: center;
    border: 1px solid #EE8130;
    box-shadow: 0 4px 8px rgba(204, 106, 38, 0.3), 0 6px 20px rgba(204, 106, 38, 0.2);
}

.breedName a,
.breedOrigin a {
    color: #EE8130;
    text-shadow: 0 0 5px rgba(238, 129, 48, 0.7);
}

.breedName a:hover,
.breedOrigin a:hover {
    color: #ff007f;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.7);
}

.imgContainer {
    background-color: #D9D9D9;
    border-radius: 20px;
}

.breedName {
    font-weight: bold;
    font-size: 24px;
}

.loadingBar {
    background-color: orange;
    height: 5px;
    width: 0%;
}

.loadingBarContainer {
    position: fixed;
    top: 0;
    z-index: 1000;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    position: absolute;
    bottom: auto;
    bottom: 20px;
    background-color: rgba(238, 129, 48, 0.8);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev-icon {
    left: 50px;
}

.carousel-control-next-icon {
    right: 50px;
}

@media (max-width: 768px) {

    .carousel-control-prev-icon {
        left: 20px;
    }

    .carousel-control-next-icon {
        right: 20px;
    }
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    font-size: 20px;
    color: white;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #EE8130;
    transform: scale(1.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}