* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "InterVariable", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.5;
}

/* Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-menu-icon {
    width: auto;
    height: 40px;
    background-color: transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.navbar-menu-icon img {
    height: 100%;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.navbar-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 1rem;
}

.navbar-search {
    position: relative;
}

.navbar-search-input {
    width: 250px;
    padding: 0.5rem 0.75rem;
    padding-left: 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background-color: #ffffff;
    color: #1f2937;
    transition: all 0.2s ease;
}

.navbar-search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.navbar-search-input::placeholder {
    color: #9ca3af;
}

.navbar-search-input:focus::placeholder {
    color: #d1d5db;
}

.navbar-search::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.navbar-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fb923c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    flex-shrink: 0;
    user-select: none;
}

.navbar-user-avatar:hover {
    opacity: 0.9;
}

.navbar-user-dropdown {
    position: relative;
}

.navbar-user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    min-width: 160px;
    z-index: 1000;
    display: none;
    padding: 0.25rem 0;
}

.navbar-user-dropdown-menu.show {
    display: block;
}

.navbar-user-dropdown-item {
    display: block;
    width: 100%;
    padding: 0.625rem 1rem;
    color: #374151;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
    transition: background-color 0.15s ease;
}

.navbar-user-dropdown-item:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.navbar-user-dropdown-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.navbar-user-dropdown-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Main Content */
.main-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    height: calc(100vh - 57px);
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.25rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    text-decoration: none;
    min-height: 120px;
}

.card:hover {
    text-decoration: none;
}

.card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-label {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    line-height: 1.3;
}

/* SVG Icon Styles */
.icon {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .main-container {
        height: auto;
        min-height: calc(100vh - 57px);
    }
}

@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .navbar-menu-icon {
        width: 28px;
        height: 28px;
    }

    .navbar-menu-icon img {
        width: 16px;
        height: 16px;
    }

    .navbar-user-avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .main-container {
        padding: 2rem 1rem;
    }
    .navbar {
        padding: 0.75rem 1rem;
    }

    .navbar-search-input {
        width: 140px;
        font-size: 12px;
        padding: 0.375rem 0.5rem;
        padding-left: 2rem;
    }

    .navbar-search::before {
        width: 14px;
        height: 14px;
        left: 0.5rem;
    }
}

@media (max-width: 400px) {
    .navbar {
        padding: 0.625rem 0.75rem;
    }
    .navbar-menu-icon {
        width: 24px;
        height: 24px;
    }

    .navbar-menu-icon img {
        width: 14px;
        height: 14px;
    }

    .navbar-user-avatar {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
}

