.dashboard-layout {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
    align-items: flex-start;
}

.dashboard-left {
    flex: 3;
    min-width: 0;
}

.dashboard-right {
    flex: 2;
    position: sticky;
    top: 120px;
    height: fit-content;
    max-width: 450px;
}

.add-business-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.add-business-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.add-business-card h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 1rem;
}

.add-business-card input,
.add-business-card textarea,
.add-business-card button {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.add-business-card input:focus,
.add-business-card textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    outline: none;
}

.add-business-card textarea {
    min-height: 100px;
    resize: vertical;
}

.add-business-card button {
    background: #007bff;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.add-business-card button:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Toast notification styles */
.notification-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 350px;
    z-index: 10000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    color: #1a1a1a;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    margin: 0;
}

.toast-close:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

@media (max-width: 1200px) {
    .dashboard-layout {
        gap: 2rem;
    }
    
    .dashboard-left {
        flex: 2;
    }
    
    .dashboard-right {
        flex: 1;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .dashboard-layout {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .dashboard-right {
        position: static;
        max-width: none;
    }
    
    .add-business-card {
        padding: 1.5rem;
    }
    
    .notification-toast {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification-toast.show {
        transform: translateY(0);
    }
}