* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body styles removed to avoid conflict with main dashboard background */

#import-export {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.page-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 45px;
    color: #FFFFFF;
    margin-bottom: 60px;
    text-align: center;
}

.cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.action-card {
    width: 686px;
    height: 176px;
    background: #C54D4E;
    border-radius: 30px;
    box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    padding: 22px 81px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
    background: #D05D5E;
}

.card-icon {
    width: 135px;
    height: 135px;
    flex-shrink: 0;
    filter: drop-shadow(0 11px 13px rgba(0, 0, 0, 0.25));
}

.card-text {
    margin-left: 45px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #FFFFFF;
    line-height: 1.3;
}

/* Icon styling */
.icon-svg {
    width: 100%;
    height: 100%;
}