/* Mobile device frame and status bar styling */
.mobile-frame {
    width: 375px;
    height: 812px;
    background: #fff;
    border: 12px solid #000;
    border-radius: 36px;
    position: relative;
    margin: 20px auto;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.status-bar {
    height: 44px;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 14px;
}

.status-bar .time {
    font-weight: bold;
}

.status-bar .icons {
    display: flex;
    gap: 5px;
}

/* Common styles */
.page-container {
    height: calc(100% - 44px);
    overflow-y: auto;
    padding: 15px;
    background: #f5f5f5;
}

.header {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.card {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn {
    background: #007AFF;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
}

.btn:disabled {
    background: #ccc;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* List styles */
.list-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-item:last-child {
    border-bottom: none;
}

/* Status tags */
.status-tag {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.status-pending {
    background: #FFF3E0;
    color: #FF9800;
}

.status-completed {
    background: #E8F5E9;
    color: #4CAF50;
}

/* Navigation */
.nav-bar {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.nav-item {
    text-align: center;
    color: #666;
    font-size: 12px;
}

.nav-item.active {
    color: #007AFF;
} 