@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6; /* Gray 100 for background */
    color: #606060;
}

/* Custom Scrollbar for Kanban */
.kanban-board {
    display: flex;
    overflow-x: auto;
    padding-bottom: 1rem;
    align-items: flex-start;
}

.kanban-board::-webkit-scrollbar {
    height: 8px;
}
.kanban-board::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 4px;
}
.kanban-board::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
.kanban-board::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Kanban column and cards */
.kanban-column {
    min-width: 300px;
    max-width: 300px;
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    margin-right: 1rem;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 12rem);
}

.kanban-cards {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
    min-height: 50px;
}

.kanban-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    cursor: grab;
    transition: transform 0.2s, box-shadow 0.2s;
}

.kanban-card:active {
    cursor: grabbing;
}

.kanban-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.sortable-ghost {
    opacity: 0.4;
}

/* Hide scrollbar for columns */
.kanban-cards::-webkit-scrollbar {
    width: 4px;
}
.kanban-cards::-webkit-scrollbar-track {
    background: transparent;
}
.kanban-cards::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 4px;
}

/* FullCalendar Overrides */
.fc-event {
    cursor: pointer;
    border: none;
}
.fc-toolbar-title {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: #00375e;
}
.fc-button-primary {
    background-color: #0090a3 !important;
    border-color: #0090a3 !important;
}
.fc-button-primary:hover {
    background-color: #007c8d !important;
}
