/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #032B44;
    padding: 15px 30px;
    color: white;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.header-nav {
    display: flex;
}

.header-nav a {
    margin: 0 15px;
    color: rgb(241, 238, 238);
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.header-nav a:hover {
    background-color: #0b22ee;
}

/* Page Container */
.container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 80px auto 20px;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Left Section */
.left-section {
    width: 35%;
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #001F3F, #FF8C00);
    color: white;
    border-radius: 8px 0 0 8px;
}

.left-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.left-section h2 {
    margin-top: 15px;
}

/* Right Section */
.right-section {
    width: 65%;
    padding: 20px;
}

.right-section h2 {
    margin-bottom: 20px;
    color: #032B44;
}

/* Button Section */
.icon-buttons {
    margin-bottom: 20px;
}

.icon-button {
    display: inline-block;
    background-color: #003049;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-right: 15px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.icon-button:hover {
    background-color: #0056b3;
}

.center-button {
    padding: 10px 20px;
    background-color: #032B44; /* Navy blue color */
    color: white; /* White text color */
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Adjust font size */
    font-weight: bold; /* Bold text */
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

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

table th {
    background-color: #032B44;
    color: white;
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #eef5ff;
}

/* Action Buttons */
table button {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

table button:hover {
    background-color: #003f7f;
}
