/* custom.css */

/* === Global Styles === */
body {
    background-color: #FFFFFF;
    font-family: Arial, sans-serif;
    color: #6E716B;
    font-size: 12pt;
    line-height: 1.4;
}

/* === Headings === */
h1 {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18pt;
    color: #34495E;
    padding: 10px;
}

h2 {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14pt;
    color: #34495E;
}

h3 {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 12pt;
    color: #34495E;
}

.upload-container {
    color: #6E716B;
}

/* === Body Text 2 === */
.fine-text {
    font-size: 10pt;
}

.custom-circle {
    background-color: #34495E;
    color : #FFFFFF;
}

/* === Top Page Banner and Text Boxes Background === */
.banner-top,
.text-box,
input[type="text"],
textarea,
select {
    background-color: #F2F3F5;
}

/* === Bottom Page Banner === */
.banner-bottom {
    background-color: #34495E;
    color: #FFFFFF;
    padding: 15px;
}

/* === Buttons === */
.btn {
    background-color: #22A4E2;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 12pt;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #EBF8FC;
    border-color: #22A4E2;
    color: #22A4E2;
}

/* === Secondary (grey) button styling */
.btn-secondary {
    background-color: #E4E4E4;
    color: #6E716B;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 12pt;
}

.btn-secondary:hover {
    background-color: #E4E4E4;
    border-color: #6E716B;
    color: #6E716B;
}

/* === Hyperlinks === */
a {
    color: #0000EE;
    text-decoration: underline;
}

/* === Green Tick === */
.icon-tick {
    color: #85C446;
}

/* === Tables === */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
}

table th, table td {
    padding: 12px;
    border: 1px solid #ccc;
    color: #6E716B;
}

th {
    background-color: #F2F3F5;
    font-weight: bold;
}

/* === Responsive Tables for Mobile === */
@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

    th {
        display: none;
    }

    td {
        position: relative;
        padding-left: 50%;
    }

    td::before {
        position: absolute;
        top: 12px;
        left: 12px;
        font-weight: bold;
        white-space: nowrap;
    }
}
