/* Notification System Styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.notification {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px;
    display: flex;
    align-items: flex-start;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    position: relative;
    border-left: 4px solid #3498db;
}

.notification.show {
    transform: translateX(0);
}

.notification.hide {
    transform: translateX(120%);
}

.notification i:first-child {
    margin-right: 12px;
    font-size: 20px;
}

.notification span {
    flex: 1;
    padding-right: 25px;
    font-size: 14px;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #aaa;
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 12px;
}

.notification-close:hover {
    color: #555;
}

/* Notification types */
.notification.info {
    border-left-color: #3498db;
}

.notification.info i:first-child {
    color: #3498db;
}

.notification.success {
    border-left-color: #2ecc71;
}

.notification.success i:first-child {
    color: #2ecc71;
}

.notification.warning {
    border-left-color: #f39c12;
}

.notification.warning i:first-child {
    color: #f39c12;
}

.notification.error {
    border-left-color: #e74c3c;
}

.notification.error i:first-child {
    color: #e74c3c;
}

/* Form Progress Bar */
.form-progress-bar {
    display: flex;
    margin: 20px 0;
    gap: 5px;
}

.progress-segment {
    height: 4px;
    flex: 1;
    background: #ddd;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.progress-segment.active {
    background: #ff6b00;
}

/* Form Tabs */
.form-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-tab {
    padding: 10px 20px;
    background: #f5f5f5;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    font-weight: 500;
    transition: all 0.3s;
}

.form-tab:hover {
    background: #eee;
}

.form-tab.active {
    background: #ff6b00;
    color: white;
}

.form-tab-content {
    display: none;
}

.form-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.navigation-buttons {
    display: flex;
    gap: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
} 