.content label {
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
}

.content input[type="file"],
.content input[type="number"],
.content select {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

/* GRID INPUTS */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 15px 0px;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* BUTTONS */
.btns {
    text-align: right;
    margin-top: 10px;
}

.app {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: max-content;
    gap: 10px;
    padding: 12px 22px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(135deg, #0a3d62, #07517d);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(78, 78, 78, 0.25);
}

.app:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #07517d, #0a3d62);
}

.app .iconn {
    transition: 0.35s;
}

.app:hover .iconn {
    transform: translateX(6px);
}

.app:active {
    transform: scale(0.96);
}

.app::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: 0.6s;
}

.app:hover::before {
    left: 120%;
}

/* TABLE */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.table-wrapper th,
.table-wrapper td {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
}

.table-wrapper td {
    background: whitesmoke;
}

.table-wrapper th {
    background: #0a3d62;
    color: white;
}

/* IMAGE PREVIEW */
.preview-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* DOWNLOAD */
.download {
    text-align: right;
    margin-top: 20px;
    border-top: 1px solid #292929;
    padding-top: 20px;
}

.download .app {
    background: #10b981;
}

/* PROGRESS */
.progress {
    font-size: 14px;
    color: #0a3d62;
    font-weight: bold;
}

/* Scrollbar for small screens */
@media (max-width: 600px) {
    .table-wrapper ::-webkit-scrollbar {
        height: 8px;
    }

    .table-wrapper ::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }

    .table-wrapper table {
        width: 600px;
    }

    .table-wrapper {
        overflow-x: scroll;
    }
}