/* Basic styling for tableBody */
#tableBody {
    border-collapse: collapse;
    font-family: Arial, sans-serif; /* Arial is commonly used in Excel */
    font-size: 14px;
    margin-top: 20px;
    width: 80%;
}

/* Headers within tableBody (if any) */
#tableBody thead {
    background-color: #4CAF50; /* Green background */
    color: white;
}

#tableBody thead th {
    padding: 10px 15px;
    border: 1px solid #ddd; /* Light gray border */
    text-align: left;
    

}

/* Data cells within tableBody */
#tableBody td {
    padding: 8px 15px;
    border: 1px solid #ddd; /* Light gray border */
    text-align: left;
}

#tableBody tr:nth-child(even) {
    background-color: #f2f2f2; /* Light gray background for even rows */
}

/* Hover effect */
#tableBody tr:hover {
    background-color: #f5f5f5; /* Slightly darker gray for hover effect */
    cursor: pointer;
}

/* Vertical alignment for cells */
#tableBody td {
    vertical-align: top;
}

/* If you want to add a border around the whole tableBody */
#tableBody {
    border: 1px solid #ddd;
}

/* Excel-like grid */
#tableBody td, #tableBody th {
    border: 1px solid #a0a0a0; /* Darker gray border */
}

.button {
    background-color: #0099CC;  /* A soft blue color */
    color: white;               /* White text color */
    padding: 10px 20px;         /* Padding around text */
    border: none;               /* No border */
    border-radius: 25px;        /* Rounded edges */
    font-size: 16px;            /* Text size */
    cursor: pointer;            /* Cursor changes to hand when hovering */
    transition: 0.3s;           /* Smooth transition for hover effects */
    text-decoration: none;      /* Removes underline if the button is a link */
}

.button:hover {
    background-color: #0077A3;  /* Slightly darker blue for hover effect */
}

/* Base styling to match the background and overall theme */
body {
    background-color: #FAFAFA;
    font-family: Arial, sans-serif;
}

/* Weather Data table styles */
#weatherData {
    width: 80%;
    margin: 20px auto;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-collapse: collapse;
}

#weatherData table {
    width: 100%;
}

#weatherData th,
#weatherData td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

#weatherData th {
    background-color: #f2f2f2;
    color: #333;
}

#weatherData tbody tr:hover {
    background-color: #f5f5f5;
}

#weatherData td {
    color: #555;
}

/* If you decide to use any links inside the table (like for detailed weather info) */
#weatherData a {
    color: #007BFF;
    text-decoration: none;
}

#weatherData a:hover {
    text-decoration: underline;
}


    @keyframes fadeInFromLeft {
        0% {
            opacity: 0;
            transform: translateX(-50px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    #welcomeMessage {
        animation: fadeInFromLeft 1s forwards;
    }

#assingments { 
    width: 80%;
}