.admin-card__cover {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.admin-card__cover--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1.5px dashed rgba(107,114,128,0.3);
}

.admin-card__cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.companies-section {
    margin-bottom: 32px;
}

.companies-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.company-card {
    background: #1c1c1f;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.company-card:hover {
    border-color: rgba(212,255,38,0.3);
    background: rgba(212,255,38,0.05);
}

.company-card__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.company-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #e5e7eb;
    margin: 0;
}

.company-card__description {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Fallback for browsers without line-clamp support */
    max-height: 3em;
    position: relative;
}

.company-card__description::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1em;
    height: 1em;
    background: #1c1c1f;
}

.company-card__stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #6b7280;
}

.company-card__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.company-card__stat-value {
    font-weight: 600;
    color: var(--accent);
}

.company-card__actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.company-card__action-btn {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.company-card__view-btn {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
}

.company-card__view-btn:hover {
    background: rgba(var(--accent-rgb), 0.2);
}

.company-card__edit-btn {
    background: rgba(96,165,250,0.1);
    color: #60a5fa;
}

.company-card__edit-btn:hover {
    background: rgba(96,165,250,0.2);
}

.company-card__delete-btn {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
}

.company-card__delete-btn:hover {
    background: rgba(239,68,68,0.2);
}

/* Modal styles */
.modal-overlay {
    backdrop-filter: blur(4px);
}

.modal-content {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Form styles */
.form-input {
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus {
    box-shadow: 0 0 0 3px rgba(212,255,38,0.1);
}

/* Loading state */
.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state__icon {
    opacity: 0.3;
    margin-bottom: 16px;
}

.empty-state__title {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.empty-state__description {
    font-size: 14px;
    color: #6b7280;
}
