/* /css/organization.css */

.organization-dashboard-card {
    max-width: 800px;
}

.organization-users-card,
.organization-teams-card,
.organization-plan-card,
.organization-token-usage-card {
    max-width: 1100px;
}

/* Plan card styling */
.plan-card {
    border: 1px solid #e5e7eb; /* gray-200 */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 1.5rem; /* p-6 */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensure cards in a row have same height */
}
.plan-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.plan-card.current-plan {
    border-color: #10b981; /* emerald-500 */
    box-shadow: 0 0 0 2px #10b981; /* emerald-500 */
}
.plan-card h3 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600; /* semibold */
    color: #1f2937; /* gray-800 */
}
.plan-card .price {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700; /* bold */
    color: #10b981; /* emerald-500 */
    margin: 0.5rem 0;
}
.plan-card .price .period {
    font-size: 0.875rem; /* text-sm */
    color: #6b7280; /* gray-500 */
    font-weight: 400; /* normal */
}
.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    color: #4b5563; /* gray-600 */
}
.plan-card ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}
.plan-card ul li i {
    color: #10b981; /* emerald-500 */
    margin-right: 0.5rem;
}

/* Token usage chart placeholder */
#tokenUsageChart {
    width: 100%;
    height: 300px;
    background-color: #f9fafb; /* gray-50 */
    border: 1px dashed #d1d5db; /* gray-300 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280; /* gray-500 */
    border-radius: 0.375rem; /* rounded-md */
}