@import '../base/index.scss';

/* Tab Navigation Styling */
.ata-nav-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 3px;
}

.ata-nav-item {
    flex: 1;
    text-align: center;
}

.ata-nav-link {
    padding: 10px 20px;
    border: 1px solid transparent;
    background: $secoundery-clr;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.ata-nav-link.active {
    background: $primary-clr;
    color: #fff;
    border-color: $primary-clr;
}

/* Tab Content Styling */
.ata-tab-content {
    margin-top: 20px;
}

.ata-tab-pane {
    display: none;
}

.ata-tab-pane.active {
    display: block;
}

/* Table Styling */
.ata-table-responsive {
    overflow-x: auto;
    margin-top: 20px;
}

.ata-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ata-table th {
    background: #f7f7f7;
    color: #333;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    padding-left: 0
}

.ata-table td {
    padding: 15px;
    text-align: left;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #eee;
    padding-left: 0
}

.ata-table tr:nth-child(even) td {
    background: #fafafa;
}

.ata-avatar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ata-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Hover Effects */
.ata-nav-link:hover {
    background: #dfe6e9;
}

.ata-table tr:hover td {
    background: #eaf0ff;
    color: #333;
}
