@font-face {
    font-family: 'CustomFont';
    src: local('Arial');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 100%;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.language {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.logo {
    height: 32px;
    width: 32px;
    margin: 0 auto;
}

.back-button {
    cursor: pointer;
    font-size: 24px;
    color: #1d1d1b;
    text-decoration: none;
}

.notification {
    position: relative;
}

.notification .material-icons {
    font-size: 24px;
    color: #1d1d1b;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    margin-top: 60px;
}

h1 {
    font-size: 32px;
    margin-bottom: 70px;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    margin-top: 180px;
}

.btn {
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.btn.primary {
    background: white;
    color: #00a6a2;
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
}

/* Quick Actions */
.quick-actions {
    margin-top: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.action-item {
    background: rgba(0, 166, 162, 0.9);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.action-item .material-icons {
    font-size: 28px;
    margin-bottom: 8px;
    color: white;
}

.action-item p {
    font-size: 12px;
    line-height: 1.2;
} 