/* COMMON UI */

.velo-btn {
    border: 0;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.velo-btn:hover {
    transform: translateY(-1px);
}

.velo-btn-primary {
    background: #175cd3;
    color: #ffffff;
}

.velo-btn-success {
    background: #027a48;
    color: #ffffff;
}

.velo-btn-danger {
    background: #b42318;
    color: #ffffff;
}

.velo-btn-light {
    background: #ffffff;
    color: #101828;
    border: 1px solid #d0d5dd;
}

.velo-btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
}

.velo-select,
.velo-textarea,
.velo-form input,
.velo-form textarea,
.velo-box input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    font-size: 14px;
}

.velo-select:focus,
.velo-textarea:focus,
.velo-form input:focus,
.velo-form textarea:focus,
.velo-box input:focus {
    outline: none;
    border-color: #175cd3;
    box-shadow: 0 0 0 4px rgba(23,92,211,0.10);
}

.velo-success {
    background: #ecfdf3;
    color: #027a48;
    padding: 14px;
    border-radius: 14px;
}

.velo-error {
    background: #fef3f2;
    color: #b42318;
    padding: 14px;
    border-radius: 14px;
}

.velo-hidden {
    display: none;
}

/* MODAL */

.velo-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(16,24,40,0.65);
    padding: 30px 16px;
    overflow-y: auto;
}

.velo-modal-content {
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 18px;
    padding: 28px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.velo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #f2f4f7;
    font-size: 26px;
    cursor: pointer;
}

/* LIGHTBOX */

.velo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(16,24,40,0.85);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.velo-lightbox img {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 14px;
}

.velo-lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    font-size: 30px;
    cursor: pointer;
}