.training-subtitle {
    font-size: 1.2rem;
    color: var(--green);
    font-weight: 600;
}

/* Table Styles */
.training-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.training-table thead th {
    background: var(--purple);
    color: white;
    font-weight: 600;
    padding: 15px;
    text-align: center;
    border: none;
    vertical-align: middle;
    white-space: nowrap;
}

.training-table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 0.95rem;
}

.training-table tbody tr:last-child td {
    border-bottom: none;
}

.training-table tbody tr:hover {
    background-color: #f9f9ff;
}

/* Column Specifics */
.serial-col {
    font-weight: bold;
    color: var(--blue);
    text-align: center;
}

.program-col {
    font-weight: 600;
    min-width: 250px;
}

/* Links & Buttons */
.pdf-link {
    color: #dc3545;
    /* PDF Red */
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.pdf-link:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #a71d2a;
    text-decoration: none;
}

.btn-register {
    background: linear-gradient(45deg, var(--green), #28a745);
    color: white;
    border: none;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(30, 152, 69, 0.3);
    box-shadow: 0 4px 10px rgba(30, 152, 69, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
        transform: scale(1);
    }
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 152, 69, 0.4);
    color: white;
    text-decoration: none;
}

.header-register-btn-container {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}