/* General styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Home page */
.home-title {
    transition: transform 0.3s ease;
}

.home-title:hover {
    transform: scale(1.05);
}

.tracking-wider {
    letter-spacing: 0.05em;
}

/* Login page */
.toggle-password {
    cursor: pointer;
}

/* Bootstrap Tags Input customization */
.bootstrap-tagsinput {
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    min-height: 38px;
}

.bootstrap-tagsinput input {
    width: auto;
    max-width: inherit;
}

.bootstrap-tagsinput .badge {
    margin-right: 2px;
    font-size: 0.85em;
    padding: 0.35em 0.65em;
    font-weight: normal;
}

.bootstrap-tagsinput .badge [data-role="remove"] {
    margin-left: 8px;
    cursor: pointer;
}

.bootstrap-tagsinput .badge [data-role="remove"]:after {
    content: "×";
    padding: 0 2px;
}

/* Custom animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* File list styling */
.list-group-item {
    transition: background-color 0.2s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

.bootstrap-tagsinput .tag{
    background: #3091cf;
    padding: 4px 10px;
    border-radius: 4px;
}

@media screen and (max-width: 767px) {
    .header-row {
        align-self: center;
        margin: 1rem auto;
    }
    
}

