﻿html {
    font-size: 14px;
  
}
body {
    font-family: "Sage Text";
}
h1,h2,h3,h4,h5{
    font-family:"Sage UI"
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.drop-zone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .drop-zone.drag-over {
        background: #e9ecef;
        border-color: #0d6efd;
    }

    .drop-zone.has-file {
        border-color: #198754;
        background: #f8f9fa;
    }

.selected-file {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

    .selected-file.active {
        display: flex;
    }

    .selected-file .file-info {
        display: flex;
        align-items: center;
        padding: 5px 10px;
        background: #e9ecef;
        border-radius: 4px;
        margin-right: 10px;
    }

    .selected-file .remove-file {
        cursor: pointer;
        color: #dc3545;
        margin-left: 8px;
    }

.file-preview {
    max-width: 150px;
    max-height: 150px;
    margin-top: 10px;
}

.drop-zone .browse-btn:hover {
    background-color: #0d6efd;
    color: white;
}

.fw-bold {
    font-weight: 500 !important;
}

.form-label {
    font-size: 0.9rem
}

.form-control {
    border-radius: 3px;
}
.btn, .form-select {
    border-radius: 3px;
}
