/* iCircle Frontend Dashboard Styles */
.icircle-dashboard {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.dashboard-title {
    color: #01608c;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: center;
}

.secondary-title {
    color: #01608c;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #01608c;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content h3 {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-number {
    margin: 0.25rem 0 0;
    font-size: 2rem;
    font-weight: bold;
    color: #01608c;
}

/* CTA Container */
.cta-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.cta-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-icon {
    width: 24px;
    height: 24px;
    margin: 0 auto 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.ivass-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3L3 8.5V21H21V8.5L12 3Z' stroke='%2301608c' stroke-width='2'/%3E%3C/svg%3E");
}

.screensaver-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V15C21 16.1046 20.1046 17 19 17H5C3.89543 17 3 16.1046 3 15V5Z' stroke='%2301608c' stroke-width='2'/%3E%3Cpath d='M8 21H16' stroke='%2301608c' stroke-width='2'/%3E%3C/svg%3E");
}

.profile-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12C14.2091 12 16 10.2091 16 8C16 5.79086 14.2091 4 12 4C9.79086 4 8 5.79086 8 8C8 10.2091 9.79086 12 12 12Z' stroke='%2301608c' stroke-width='2'/%3E%3Cpath d='M20 21C20 17.134 16.866 14 13 14H11C7.13401 14 4 17.134 4 21' stroke='%2301608c' stroke-width='2'/%3E%3C/svg%3E");
}

.cta-card h3 {
    color: #01608c;
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.cta-button {
    display: inline-block;
    background-color: #01608c;
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #014c70;
    color: white;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .icircle-dashboard {
        padding: 1rem;
    }
    
    .stats-container,
    .cta-container {
        grid-template-columns: 1fr;
    }
}