/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Table Styles */
table {
    border-collapse: collapse;
    width: 70%; /* Matches the table width */
}

td {
    vertical-align: top; /* Aligns content to the top by default */
    text-align: center; /* Centers all content horizontally */
    padding: 10px;
}

.flex-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Centers items horizontally */
    gap: 15px; /* Adds spacing between elements */
}

.notification .icon {
    border: none; /* Removes image borders */
}

.video {
    display: block;
    margin: auto; /* Centers videos horizontally */
}


/* Black Table Cell */
.black-cell {
    background-color: black;
    color: white; /* Optional for visibility */
}

/* Responsive Image Styling */
.responsive-image {
    width: 20%; /* Adjust image to 20% of its container */
    max-width: 100%;
}

/* Notification Styles */
.notification {
    position: relative;
    display: inline-block;
}

.counter {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
}

.icon {
    font-size: 40px; /* Example size for your notification icon */
}

/* Header Styling */
header {
    background-color: #1e90ff;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Navigation Styling */
nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block; /* Better alignment flexibility */
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #1e90ff;
}

/* Section Styles */
section {
    padding: 20px;
    margin: 20px auto; /* Center content */
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 80%; /* Restrict width for readability */
}

/* Profile Photo Styling */
.profile-photo {
    width: 150px;
    border-radius: 50%;
}

/* Media Gallery */
.media-gallery img {
    width: 100%;
    max-width: 400px;
    margin: 10px auto; /* Center images */
    border: 2px solid #1e90ff;
    display: block; /* Ensure images are block-level */
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 10px;
    background-color: #1e90ff;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Form Container Styling */
.form-container {
    width: 100%;
    min-height: auto; /* Adjust height dynamically */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f8ff;
}

form {
    width: 100%; /* Fluid width */
    max-width: 400px; /* Readable width on larger screens */
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Button Styling - Download Button */
.download-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.download-button:active {
    background-color: #004080;
    transform: translateY(1px);
}

/* Button Styling - Upload Button */
.upload-button {
    display: inline-block;
    padding: 7px 15px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.upload-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.upload-button:active {
    background-color: #004080;
    transform: translateY(1px);
}
}
.notification { position: relative; display: inline-block; } .counter1 { position: absolute; top: 0; right: 0; background-color: red; color: white; border-radius: 50%; width: 24px; height: 24px; display: flex; justify-content: center; align-items: center; font-size: 14px; font-weight: bold; } .icon { font-size: 40px; /* Example size for your mail icon */ }
		.responsive-image {
    width: 20%;
}
.notification { position: relative; display: inline-block; } .counter2 { position: absolute; top: 0; right: 0; background-color: red; color: white; border-radius: 50%; width: 24px; height: 24px; display: flex; justify-content: center; align-items: center; font-size: 14px; font-weight: bold; } .icon { font-size: 40px; /* Example size for your mail icon */ }
		.responsive-image {
    width: 20%;
}
.table-standard {
    width: 70%; /* Standard width */
    border-collapse: collapse;
    margin: auto; /* Centers the table by default */
    text-align: center; /* Centers content horizontally */
}




/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    section {
        max-width: 90%; /* Adapt section for smaller screens */
    }

    form-container {
        flex-direction: column; /* Stack elements vertically */
    }

    nav ul li {
        display: block; /* Stack navigation items */
        margin: 5px 0;
    }
}

 .container {
            position: relative;
            display: inline-block;
        }

        .popup-text {
            visibility: hidden;
            background-color: #007BFF;
            color: white;
            text-align: center;
            padding: 5px 10px;
            border-radius: 4px;

            /* Positioning */
            position: absolute;
            bottom: 125%; /* Adjusts where the text appears (above the element) */
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            z-index: 1;

            /* Animation */
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .container:hover .popup-text {
            visibility: visible;
            opacity: 1;
        }
