﻿.btn-asignado {
    color: #28a745;
    border-color: #28a745;
    background-color: #fff;
    border-radius: 5px;
    width: 90%;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
    .btn-asignado:hover {
        color: #fff;
        border-color: #28a745;
        background-color: #28a745;
    }

.btn-disponible {
    color: #007bff;
    border-color: #007bff;
    background-color: #fff;
    border-radius: 5px;
    width: 90%;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

    .btn-disponible:hover {
        color: #fff;
        border-color: #007bff;
        background-color: #007bff;
    }

.uploadFile {
    background-color:#b5cfea
}

.drag-drop-zone {
    border: 2px dashed #007bff;
    border-radius: 5px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
    color: #007bff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
    position: relative;
    flex-grow: 1;
}

    .drag-drop-zone:hover {
        background-color: #007bff;
        color: #fff;
    }

    .drag-drop-zone input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.link {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    cursor: pointer;
}

    .link:hover {
        color: #0056b3;
        text-decoration: underline
    }