/* Main styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

footer {
    margin-top: auto;
}

/* Card styles */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

/* Table styles */
.table-container {
    overflow-x: auto;
}

.table th {
    position: sticky;
    top: 0;
    background-color: #fff;
}

/* Form styles */
.form-control:focus, .btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Loading spinner */
.spinner-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Skills tags */
.skills-container {
    min-height: 38px;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    background-color: #f8f9fa;
}

.skills-container .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5em 0.7em;
}

/* Search and filter */
.search-box {
    position: relative;
}

.search-box .bi-search {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}

.search-box input {
    padding-left: 35px;
}

/* Pagination */
.pagination .page-link {
    color: #0d6efd;
}

.pagination .active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .card-title {
        font-size: 1.25rem;
    }
    
    .table th, .table td {
        padding: 0.5rem;
    }
}
