/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&display=swap');

/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Card styling */
.card {
    background: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.card-header {
    background: transparent;
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: #222;
}

.card-body {
    padding: 1rem;
}

.card-footer {
    background: transparent;
    border-top: none;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Button styling */
.btn-primary {
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
}

.btn-warning {
    border-radius: 6px;
    padding: 0.5rem 1rem;
}

.btn-danger {
    border-radius: 6px;
    padding: 0.5rem 1rem;
}

/* Table styling */
.table {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.table thead tr {
    background-color: #e9ecef;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

.table th, .table td {
    vertical-align: middle;
}

/* Modal styling */
.modal-content {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Drag handle cursor */
.drag-handle {
    cursor: grab;
}

.drag-handle:active {
    cursor: grabbing;
}
