@charset "utf-8";

/* Consulting Form - Modern Design */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-desc {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 300;
}

.contact-form-required {
    font-size: 14px;
    color: #999;
}

.star {
    color: #ff6b6b;
    font-weight: bold;
}

/* Form Section */
.form-section {
    margin-bottom: 45px;
}

.section-title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--brand-color, #4a90d9);
    font-size: 18px;
    width: 24px;
}

.section-desc {
    font-size: 13px;
    color: #999;
    margin-bottom: 18px;
    padding-left: 34px;
}

/* Checkbox Grid - Modern Card Style */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.checkbox-card {
    position: relative;
    cursor: pointer;
}

.checkbox-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 12px;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    background: #fff;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.checkbox-card .card-content i {
    font-size: 28px;
    margin-bottom: 12px;
    color: #bbb;
    transition: all 0.25s ease;
}

.checkbox-card .card-content span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    transition: all 0.25s ease;
}

.checkbox-card input:checked + .card-content {
    border-color: var(--brand-color, #4a90d9);
    background: linear-gradient(135deg, rgba(74,144,217,0.08) 0%, rgba(74,144,217,0.02) 100%);
    box-shadow: 0 4px 20px rgba(74,144,217,0.15);
    transform: translateY(-2px);
}

.checkbox-card input:checked + .card-content i {
    color: var(--brand-color, #4a90d9);
    transform: scale(1.1);
}

.checkbox-card input:checked + .card-content span {
    color: var(--brand-color, #4a90d9);
    font-weight: 600;
}

.checkbox-card:hover .card-content {
    border-color: #ccc;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Radio Grid - Modern Style */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-card .card-content {
    display: block;
    padding: 14px 12px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.radio-card input:checked + .card-content {
    border-color: var(--brand-color, #4a90d9);
    background: var(--brand-color, #4a90d9);
    color: #fff;
    box-shadow: 0 4px 20px rgba(74,144,217,0.3);
    transform: translateY(-2px);
}

.radio-card:hover .card-content {
    border-color: #ccc;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* File Upload - Modern Style */
.file-upload-area {
    position: relative;
    border: 2px dashed #ddd;
    border-radius: 16px;
    padding: 50px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: var(--brand-color, #4a90d9);
    background: linear-gradient(135deg, rgba(74,144,217,0.05) 0%, rgba(74,144,217,0.02) 100%);
}

.file-upload-area.has-file {
    border-color: #52c41a;
    border-style: solid;
    background: linear-gradient(135deg, rgba(82,196,26,0.05) 0%, rgba(82,196,26,0.02) 100%);
}

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

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #999;
}

.file-upload-content i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ccc;
}

.file-upload-content span {
    font-size: 14px;
}

.file-name {
    margin-top: 15px;
    font-size: 14px;
    color: #52c41a;
    font-weight: 600;
}

/* Textarea - Modern Style */
.form-section textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    resize: vertical;
    min-height: 160px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #fff;
    line-height: 1.6;
}

.form-section textarea:focus {
    outline: none;
    border-color: var(--brand-color, #4a90d9);
    box-shadow: 0 0 0 4px rgba(74,144,217,0.1);
}

.form-section textarea::placeholder {
    color: #bbb;
}

/* Text Input - Modern Style */
.form-section > input[type="text"] {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #fff;
}

.form-section > input[type="text"]:focus {
    outline: none;
    border-color: var(--brand-color, #4a90d9);
    box-shadow: 0 0 0 4px rgba(74,144,217,0.1);
}

.form-section > input[type="text"]::placeholder {
    color: #bbb;
}

/* Contact Grid - Modern Style */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.form-group input {
    padding: 14px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-color, #4a90d9);
    box-shadow: 0 0 0 4px rgba(74,144,217,0.1);
}

.form-group input::placeholder {
    color: #bbb;
}

/* Privacy Section - Modern Style */
.privacy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    padding: 24px;
    border-radius: 16px;
    margin-top: 30px;
}

.privacy-agree {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}

.privacy-agree input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--brand-color, #4a90d9);
}

.privacy-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.privacy-text strong {
    font-size: 14px;
    color: #333;
}

.btn-privacy-detail {
    background: none;
    border: none;
    color: var(--brand-color, #4a90d9);
    cursor: pointer;
    font-size: 13px;
    padding: 0;
    font-weight: 500;
}

.btn-privacy-detail:hover {
    text-decoration: underline;
}

/* Submit Button - Modern Style */
.form-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 60px;
    background: linear-gradient(135deg, var(--brand-color, #4a90d9) 0%, #357abd 100%);
    color: #fff;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(74,144,217,0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74,144,217,0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit i {
    font-size: 16px;
}

/* Privacy Modal - Modern Style */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.privacy-modal.show {
    display: flex;
}

.privacy-modal-content {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    animation: modalIn 0.3s ease;
}

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

.privacy-modal-content h4 {
    font-size: 20px;
    margin-bottom: 25px;
    padding-right: 35px;
    color: #222;
}

.privacy-detail p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #666;
}

.privacy-detail p strong {
    color: #333;
}

.btn-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: #f5f5f5;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-close:hover {
    background: #eee;
    color: #333;
}

/* Contact Info Box - Modern Style */
.contact-info-box {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    border-radius: 20px;
    text-align: center;
}

.contact-info-box h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.contact-info-box h4 i {
    color: var(--brand-color, #4a90d9);
    margin-right: 8px;
}

.contact-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-box li {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.contact-info-box li i {
    margin-right: 10px;
    color: var(--brand-color, #4a90d9);
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 15px;
    }

    .contact-form-header {
        margin-bottom: 35px;
    }

    .contact-form-desc {
        font-size: 18px;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .checkbox-card .card-content {
        padding: 18px 10px;
    }

    .checkbox-card .card-content i {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .radio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-info-box ul {
        flex-direction: column;
        gap: 15px;
    }

    .privacy-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-desc {
        padding-left: 0;
    }

    .btn-submit {
        width: 100%;
        padding: 16px 40px;
    }
}

@media (max-width: 480px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkbox-card .card-content {
        padding: 15px 8px;
    }

    .checkbox-card .card-content i {
        font-size: 20px;
    }

    .checkbox-card .card-content span {
        font-size: 12px;
    }

    .radio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .radio-card .card-content {
        padding: 12px 8px;
        font-size: 13px;
    }

    .form-section {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 15px;
    }
}

/* ========================================
   Consulting List Page - Modern Style
   ======================================== */
.consulting-list-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* List Header */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.list-info {
    font-size: 14px;
    color: #666;
}

.list-info strong {
    color: var(--brand-color, #4a90d9);
    font-weight: 700;
}

.search-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.select-status {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    outline: none;
}

.select-status:focus {
    border-color: var(--brand-color, #4a90d9);
}

.search-box {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.search-box input {
    padding: 10px 15px;
    border: none;
    font-size: 14px;
    width: 200px;
    outline: none;
}

.search-box button {
    padding: 10px 15px;
    border: none;
    background: var(--brand-color, #4a90d9);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.search-box button:hover {
    background: #357abd;
}

/* List Table */
.list-table-wrap {
    overflow-x: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.list-table {
    width: 100%;
    border-collapse: collapse;
}

.list-table thead {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
}

.list-table th {
    padding: 16px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
}

.list-table td {
    padding: 16px 12px;
    font-size: 14px;
    color: #333;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.list-table tbody tr {
    transition: background 0.2s;
}

.list-table tbody tr:hover {
    background: #fafbfc;
}

.list-table tbody tr:last-child td {
    border-bottom: none;
}

.col-no { width: 60px; }
.col-type { text-align: left !important; }
.col-name { width: 100px; }
.col-contact { width: 130px; }
.col-budget { width: 100px; }
.col-status { width: 80px; }
.col-date { width: 100px; }
.col-action { width: 90px; }

/* Type Tag */
.type-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #f0f4f8;
    border-radius: 6px;
    font-size: 12px;
    color: #555;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-progress {
    background: #cce5ff;
    color: #004085;
}

.status-complete {
    background: #d4edda;
    color: #155724;
}

/* Action Button */
.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-view:hover {
    background: var(--brand-color, #4a90d9);
    border-color: var(--brand-color, #4a90d9);
    color: #fff;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
}

.page-btn,
.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.page-btn:hover,
.page-num:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.page-num.active {
    background: var(--brand-color, #4a90d9);
    border-color: var(--brand-color, #4a90d9);
    color: #fff;
}

.page-dots {
    padding: 0 8px;
    color: #999;
}

/* Empty List */
.empty-list {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.empty-list i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-list p {
    font-size: 16px;
    color: #888;
    margin-bottom: 25px;
}

.btn-new-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--brand-color, #4a90d9);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-new-inquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74,144,217,0.3);
}

/* ========================================
   Consulting View Page - Modern Style
   ======================================== */
.consulting-view-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* View Header */
.view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.view-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-date {
    font-size: 14px;
    color: #888;
}

.view-actions {
    display: flex;
    gap: 10px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-back:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* View Card */
.view-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    overflow: hidden;
}

.card-header {
    padding: 18px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    font-size: 15px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.card-header i {
    color: var(--brand-color, #4a90d9);
}

.card-body {
    padding: 24px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-item.full {
    grid-column: 1 / -1;
}

.info-item label {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
}

.info-item span {
    font-size: 14px;
    color: #333;
}

.info-item .highlight {
    color: var(--brand-color, #4a90d9);
    font-weight: 600;
}

.type-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.type-tags .type-tag {
    background: linear-gradient(135deg, rgba(74,144,217,0.1) 0%, rgba(74,144,217,0.05) 100%);
    color: var(--brand-color, #4a90d9);
    font-weight: 500;
}

.file-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-color, #4a90d9);
    text-decoration: none;
}

.file-link:hover {
    text-decoration: underline;
}

/* Info Content */
.info-content {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.info-content label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.content-box {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    white-space: pre-wrap;
}

/* Admin Card */
.admin-card {
    border: 2px solid var(--brand-color, #4a90d9);
}

.admin-card .card-header {
    background: linear-gradient(135deg, rgba(74,144,217,0.1) 0%, rgba(74,144,217,0.05) 100%);
}

.admin-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.admin-form-row .form-group {
    flex: 1;
}

.admin-card .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.select-status-edit {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.select-status-edit:focus {
    outline: none;
    border-color: var(--brand-color, #4a90d9);
}

.admin-card textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    resize: vertical;
    min-height: 120px;
    box-sizing: border-box;
}

.admin-card textarea:focus {
    outline: none;
    border-color: var(--brand-color, #4a90d9);
}

.admin-card .form-actions {
    margin-top: 20px;
    text-align: right;
}

.btn-save {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--brand-color, #4a90d9);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-save:hover {
    background: #357abd;
    transform: translateY(-1px);
}

/* View Footer */
.view-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.btn-list,
.btn-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-list {
    background: #fff;
    border: 1px solid #ddd;
    color: #555;
}

.btn-list:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.btn-new {
    background: var(--brand-color, #4a90d9);
    border: 1px solid var(--brand-color, #4a90d9);
    color: #fff;
}

.btn-new:hover {
    background: #357abd;
    transform: translateY(-1px);
}

/* List/View Responsive */
@media (max-width: 768px) {
    .consulting-list-container,
    .consulting-view-container {
        padding: 20px 15px;
    }

    .list-header {
        flex-direction: column;
        align-items: stretch;
    }

    .search-form {
        flex-direction: column;
    }

    .search-box input {
        width: 100%;
    }

    .list-table th,
    .list-table td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .col-contact {
        display: none;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .view-header {
        flex-direction: column;
        align-items: stretch;
    }

    .view-actions {
        justify-content: flex-end;
    }

    .admin-form-row {
        flex-direction: column;
    }

    .view-footer {
        flex-direction: column;
    }

    .btn-list,
    .btn-new {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .pagination {
        flex-wrap: wrap;
    }
}
