/* ------------------------------
   GENERAL IMAGE STYLING
--------------------------------*/
img {
    border-color: transparent;
    transition: 0.3s ease-in-out;
}

/* Hover effect: glow + scale */
img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px dodgerblue;
}

/* ------------------------------
   HEADER STYLING
--------------------------------*/
header {
    background: linear-gradient(to right, #005A9C, #1E90FF);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* ------------------------------
   TABLE STYLING
--------------------------------*/
table {
    width: 65%;
    margin-left: auto;
    margin-right: auto;
    border-color: #545859;
    border-style: ridge;
    border-width: 10px;

    /* Modern card-style look */
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* Alternating row colors for readability */
table tr:nth-child(even) {
    background-color: #efefef;
}

table tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Table headers */
th {
    color: white;
    background-color: #757775;
}

/* Bold text class */
td.bolder {
    font-weight: bold;
}

/* Striped rows (if used manually) */
tr.stripe {
    background-color: #d8d8ce;
}

/* Caption styling */
caption {
    caption-side: bottom;
    font-style: italic;
}

/* ------------------------------
   NAVIGATION MENU
--------------------------------*/
.menu {
    text-align: center;
    width: 60%;
}

/* Button sizing */
.menuicon {
    width: 23%;
}

.menupipe {
    width: 1%;
}

/* Hover animation for menu buttons */
.menuicon img {
    transition: 0.25s ease-in-out;
}

.menuicon img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px #1e90ff);
}
