/*================================================================================
	Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
	Version: 2.0
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */
.custom-file-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px dashed #ced4da;
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.custom-file-wrapper:hover {
    background: #e9ecef;
    border-color: #0d6efd;
}

.custom-file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.custom-file-label {
    pointer-events: none;
    flex: 1;
    text-align: center;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s;
}

/* Estilo cuando hay archivo cargado */
.custom-file-wrapper.success {
    background-color: #d4edda; /* verde claro tipo success */
    border-color: #28a745;
}
.custom-file-wrapper.success .custom-file-label {
    color: #155724; /* texto más oscuro sobre verde */
    font-weight: 600;
}
