/* Main body font */
body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

/* Form Label Styling */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569; /* slate-600 */
}

/* Form Input Field Styling */
.form-input {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #cbd5e1; /* slate-300 */
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.form-input:focus {
    outline: none;
    border-color: #88ceb2;
    box-shadow: 0 0 0 2px rgba(136, 206, 178, 0.3);
}

/* Primary Button Styling */
.btn-primary {
    display: inline-block;
    background-color: #88ceb2;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.btn-primary:hover {
    background-color: #72b99d;
}

/* Secondary Button Styling */
.btn-secondary {
    display: inline-block;
    background-color: #6eb1d6;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.btn-secondary:hover {
    background-color: #5d9dc2;
}

/* Tertiary Button Styling */
.btn-tertiary {
    color: #475569; /* slate-600 */
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: color 0.2s;
}
.btn-tertiary:hover {
    color: #1e293b; /* slate-800 */
}

/* Tag styles */
.tag {
    background-color: #e2e8f0; /* slate-200 */
    color: #475569; /* slate-600 */
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.tag:hover {
    background-color: #cbd5e1; /* slate-300 */
}

.tag-filter {
    background-color: #f1f5f9; /* slate-100 */
    color: #475569; /* slate-600 */
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0; /* slate-200 */
    cursor: pointer;
    transition: all 0.2s;
}
.tag-filter:hover {
    background-color: #e2e8f0; /* slate-200 */
    border-color: #cbd5e1;
}
.tag-filter.active {
    background-color: #6eb1d6; /* Your secondary color */
    color: white;
    border-color: #6eb1d6;
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 1rem;
}
.modal-content {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
}
