@charset "UTF-8";

/* =========================================
   Introduce Module Styles
   Target: /introduce/*.jsp
   ========================================= */

/* Table Styles - Generic */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.custom-table th {
    background-color: #e4e7ed;
    color: #333;
    font-weight: bold;
    text-align: center;
    border: 1px solid #dee2e6;
    padding: 12px;
}

.custom-table td {
    border: 1px solid #dee2e6;
    padding: 12px;
    vertical-align: middle;
}

.custom-table img {
    max-width: 100%;
    height: auto;
}

/* Certificate Cards (Qualification) */
.certificate-card {
    border: 1px solid #dee2e6;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    background: #fdfdfd;
    height: 100%;
    transition: transform 0.2s;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.certificate-title {
    background-color: #e4e7ed;
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
    font-weight: bold;
    color: #333;
}

/* Organization Chart */
.sector {
    font-weight: bold;
    background-color: #f8f9fa;
}

/* Maps */
.map-section {
    margin-bottom: 3rem;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border: 1px solid #ddd;
    overflow: hidden;
    border-radius: 5px;
}

.office-info {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    border-left: 5px solid #073a7e;
}

.office-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #073a7e;
    display: block;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}