/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}


.toolbar-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toolbar {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    gap: 12px;
    padding: 10px 5px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}

.toolbar::-webkit-scrollbar {
    height: 8px;
}

.toolbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.toolbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.toolbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: red;
    height: 100px;
    border-radius: 15px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.tool-item i {
    font-size: 24px;
    margin-bottom: 3px;
    color: #6366F1;
}

.tool-item span {
    font-size: 0.85rem;
    text-align: center;
    font-weight: 500;
    color: #4B5563;
}


.content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    padding: 20px;
    background: #6366F1;
    color: white;
}

.card-body {
    padding: 20px;
}

.card-body p {
    line-height: 1.6;
    color: #4B5563;
}
*/

.app-container {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    /*padding: 20px;*/
    overflow-y: auto;
}

.bottom-app-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: none;
    padding: 12px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    gap: 4px;
}

.nav-icon i {
    font-size: 20px;
}

.nav-icon {
    color: #2196F3;
}

.nav-icon:hover {
    color: #2196F3;
}

