
.section-title {
    color: #f0c843;
    font-size: 26px;
    text-align: center;
    margin-bottom: 25px;
}

.section-subtitle {
    color: #f0c843;
    font-size: 20px;
    margin-top: 30px;
    border-bottom: 1px solid #f0c843;
    display: inline-block;
    padding-bottom: 5px;
}

.server-details p {
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.5;
}

.exp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.exp-table th,
.exp-table td {
    border: 1px solid #333;
    padding: 10px;
    font-size: 18px;
    text-align: center;
    color: #ccc;
}

.exp-table th {
    background-color: #1b1b1b;
    color: #f0c843;
}

.exp-table tr:nth-child(even) {
    background-color: #161616;
}

.exp-table tr:hover {
    background-color: #222;
    transition: 0.2s;
}

/* ============================= */
/*         SERVER LIBRARY        */
/* ============================= */

.server-library {
    background: rgba(35, 28, 21, 0.6);
    border: 1px solid #333;
    margin-top: 25px;
    border-left: 5px solid #f0c843;
    border-radius: 12px;
    font-size: 18px;
    padding: 25px 30px;
    color: #ccc;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.library-header {
    text-align: center;
    margin-bottom: 20px;
}

.library-icon {
    font-size: 40px;
    display: block;
}

.library-title {
    color: #f0c843;
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0 3px;
}

.library-subtitle {
    color: #aaa;
    font-size: 14px;
    font-style: italic;
}

.library-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px 15px;
    transition: 0.2s;
}

.info-row:hover {
    background-color: #292929;
    border-color: #f0c843;
}

.info-label {
    font-weight: 700;
    color: #f0c843;
}

.info-value {
    color: #fff;
    font-weight: 500;
}