/* Judul Dashboard */
.dashboard-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #253a68;
}

/* Grid Menu */
.app-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/* Card App */
.app-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.app-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Judul App */
.app-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #305090;
    text-transform: uppercase;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.3rem;
}

/* Daftar Model */
.model-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.3rem 0;
}
.model-link a {
    color: #253a68;
    text-decoration: none;
    font-size: 0.95rem;
}
.model-link a:hover {
    text-decoration: underline;
}

/* Tombol Add */
.add-link {
    background-color: #4CAF50;
    color: white !important;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.add-link:hover {
    background-color: #45a049;
}
