/* style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container-white {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 21px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 12px;
    color: #777;
}

.divider-line {
    height: 1px;
    background-color: #e0e0e0;
    margin: 10px 0;
}

.campaign-details {
    font-size: 14px;
    color: #101010;
    line-height: 1.6;
}

.status-dropdown {
    font-size: 16px;
    font-weight: 600;
    background-color: #e46e6e;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    width: 100%;
}

.detail-section {
    margin-bottom: 20px;
}

.detail-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}

.detail-value {
    margin-bottom: 15px;
}

.influencer-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.btn-view {
    background-color: #4CAF50;
    color: white;
}

.btn-remove {
    background-color: #f44336;
    color: white;
}