/* PDS Button Styles */
.pds-button {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #495057;
    color: #212529;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(73, 80, 87, 0.15);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-family: 'db_helvethaica_x65_med';
}

.pds-button:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #343a40;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(73, 80, 87, 0.25);
    color: #212529;
    text-decoration: none;
}

.pds-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(73, 80, 87, 0.2);
}

.pds-button i {
    color: #495057;
    font-size: 18px;
}

@media (max-width: 768px) {
    .pds-button {
        padding: 10px 20px;
        font-size: 16px;
        margin-top: 10px;
    }
    .pds-button i {
        font-size: 16px;
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .pds-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    .pds-button i {
        font-size: 14px;
        margin-right: 5px;
    }
}