/* === WRAPPER === */
.atc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* === SEARCH === */
.atc-search-box {
    position: relative;
    margin-bottom: 30px;
}
.atc-search-input {
    width: 100%;
    padding: 16px 48px 16px 18px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    font-size: 16px;
}
.atc-search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

/* === GRID === */
.atc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
    gap: 22px;
}

/* === CARD === */
.atc-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid #eef0f3;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transition: all .3s ease;
}
.atc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(58,166,185,.25);
}

/* === HEADER === */
.atc-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-weight: 700;
}
.atc-divider {
    flex: 1;
    height: 2px;
    margin: 0 10px;
    background: linear-gradient(to right,#3aa6b9,transparent);
}

/* === TABLE === */
.atc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.atc-table td,
.atc-table th {
    padding: 10px 6px;
}
.atc-table th {
    font-weight: 600;
    color: #374151;
}

/* === LIST VIEW === */
.atc-list-table {
    width: 100%;
    border-collapse: collapse;
}
.atc-list-row {
    border-bottom: 1px solid #eef0f3;
}
.atc-list-row:hover {
    background: #f9fafb;
}
.atc-wrapper {
    padding: 20px !important;
}
.hidden {
    display: none !important;
}
