/* General Styles */
body {
    padding-top: 56px;
}

/* Card hover effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Attachment rows */
.attachment-row {
    align-items: center;
}

/* Modal styles */
.modal-body img {
    max-width: 100%;
    height: auto;
}

/* Table styles */
.table th {
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .attachment-row .col-md-4, 
    .attachment-row .col-md-6 {
        margin-bottom: 10px;
    }
    
    .attachment-row .col-md-2 {
        text-align: right;
    }
}
/* Footer positioning */
html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px; /* Footer height */
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
}

/* Adjust container padding for footer */
.container {
    padding-bottom: 20px;
}
/* Home page specific styles */
.hero-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.feature-item {
    padding: 15px;
    border-radius: 5px;
    background-color: #f8f9fa;
}

.feature-item i {
    margin-bottom: 10px;
}

.feature-item p {
    margin: 0;
    font-weight: 500;
}