/*
 * ZEUS Table Widgets General Styles
 */

.z-table-column {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eaeaea;
    text-align: center;
}

.z-table-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Highlighted Column */
.z-table-highlighted {
    border: 2px solid var(--zeus-primary-color, #007bff);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    z-index: 10;
}

.z-table-highlighted:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.2);
}

.z-table-badge {
    background-color: var(--zeus-primary-color, #007bff);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
.z-table-header {
    padding: 30px 20px 20px;
    border-bottom: 1px solid #f5f5f5;
}

.z-table-title {
    margin: 0 0 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.z-table-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.z-table-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Body / Features */
.z-table-body {
    flex-grow: 1;
    padding: 20px;
    background-color: #fafafa;
}

.z-table-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z-table-feature-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
    text-align: left;
    font-size: 0.95rem;
    color: #444;
}

.z-table-feature-item:last-child {
    border-bottom: none;
}

.z-table-feature-icon {
    width: 24px;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.z-table-feature-item.status-included .z-table-feature-icon {
    color: #28a745; /* Green check */
}

.z-table-feature-item.status-excluded {
    opacity: 0.5;
}

.z-table-feature-item.status-excluded .z-table-feature-icon {
    color: #dc3545; /* Red cross */
}

.z-table-feature-item.status-excluded .z-table-feature-text {
    text-decoration: line-through;
}

.z-table-feature-item.status-none .z-table-feature-icon {
    display: none;
}

/* Footer / Button */
.z-table-footer {
    padding: 25px 20px;
    background-color: #fff;
    border-top: 1px solid #f5f5f5;
}

.z-table-button .z-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: var(--zeus-primary-color, #007bff);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.z-table-button .z-btn:hover {
    background-color: var(--zeus-primary-hover-color, #0056b3);
    color: #fff;
}