/* Main styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: none;
}

/* Home Page Styles */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e5799 0%,#207cca 51%,#2989d8 100%);
    color: white;
}

.hero-section img {
    max-height: 400px;
    object-fit: contain;
}

.features-section {
    padding: 4rem 0;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.cta-section {
    padding: 4rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-section .col-md-6:last-child {
        margin-top: 2rem;
    }
    
    .step-card {
        margin-bottom: 1.5rem;
    }
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    padding: 15px 20px;
}

.bg-primary-dark {
    background-color: #0b5ed7 !important;
}

.bg-success-dark {
    background-color: #157347 !important;
}

.bg-warning-dark {
    background-color: #ffca2c !important;
}

/* Navbar styles */
.navbar-brand img {
    margin-right: 10px;
}

/* Form styles */
.form-control, .form-select {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ced4da;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
}

/* Table styles */
.table {
    margin-bottom: 0;
}

.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

/* Alert styles */
.alert {
    border-radius: 5px;
}

/* Dashboard card styles */
.dashboard-card {
    transition: transform 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

/* Asset suggestion box */
.suggestion-box {
    position: absolute;
    z-index: 1000;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

/* Footer styles */
footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 15px;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
}