/* styles.css */
body {
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 30px;
    margin-right: 10px;
}

/* card body widening */
.custom-card-body {
    width: 90%; /* Adjust the width as per your requirement */
    margin: 0 auto; /* Center the card-body horizontally */
}
 .navbar-brand img {
            height: 60px;
            margin-right: 10px;
        }

        /* Custom styles for navigation buttons */
        .nav-link {
            transition: background-color 0.3s ease;
        }
        .nav-link:hover {
            background-color: limegreen;
            color: white !important;
        }

        /* Adjust logo image for better alignment */
        .navbar-brand img {
            vertical-align: middle;
        }

/* IPCC 2023 YouTube Video Trailer */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    padding-top: 25px;
    height: 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.email-link {
    color: #333; /* Change the color to fit your design */
    text-decoration: none; /* Removes underline from the link */
}

.email-link:hover {
    color: #007bff; /* Change hover color */
}