/* static/css/styles.css */


th, td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    background-color: #f2f2f2;
}

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

th {
    background-color: #87CEEB;
}

table {
    clear:both;
    border-collapse: collapse;
    margin-top: 20px;
    margin-left: 10%;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #87CEEB;
    width: 80%; /* Adjust the width as needed */

}

label {
    margin: auto;
    text-align: center;
    color: black;
    margin-left: 200px;

}

select {
    width: 8%;
    margin: auto;
    color: black;
    text-align: right;

}

h1,h2 {
    text-align: center;
    color: #87CEEB;
}
h3 {
    text-align: center;
    color: black;
}
a {
    color: #87CEEB;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 20px;
}

input {
    padding: 8px;
    margin: 0 5px;
}

form {
    display: flex;
    justify-content: space-between;
    /*margin-bottom: 20px;*/

}

button {
    width: 8%;
    margin: auto;
    background-color: #87CEEB;
    color: black;
    padding: 8px;
    cursor: pointer;
    border: 5px solid #87CEEB;
}

#button_, #select_{
    width: auto;
}
.button_ {
    width: auto;
    margin: 1px;
}
#form_{
    width: auto;
}
#update_ {
    width: 50%;
    margin: auto;
    background-color: #87CEEB;

    color: white;
    padding: 8px;
    cursor: pointer;
    border: 5px solid #87CEEB;
}

.highlight-text {
    background-color: #87CEEB; /* Tomato color */
    color: white;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
}
.highlight-red {
    background-color: #FF6347; /* 🔴 Tomato Red */
    color: white;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
}

.highlight-green {
    background-color: #32CD32; /* 🟢 Lime Green */
    color: white;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}


.panel {
    width: 250px;
    height: 180px;
    background-color: #87CEEB;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    padding: 10px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    cursor: pointer;
    word-wrap: break-word;
    text-decoration: none;  /* Removes underline */
}
.panel:hover {
    background-color: #4682B4;
}


.link {
    text-decoration: none;
    color: white;
    /*display: block;*/
    text-decoration: none; /* Removes underline */
    display: inline-block;
}

h1 {
    text-align: center;
    color: #87CEEB;
}
.logout-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff4d4d;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}
.logout-btn:hover {
    background-color: #cc0000;}