/* Estilos especificos de Apps */
.safari-content {
    background: white;
    color: #333;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.safari-toolbar {
    height: 40px;
    background: #f1f1f1;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
}

.word-content {
    background: #f0f0f0;
    height: 100%;
    padding: 40px;
    overflow-y: auto;
    display: flex;
    justify-content: center;
}

.word-page {
    background: white;
    width: 600px;
    min-height: 842px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 60px;
    color: black;
    outline: none;
}

.music-content {
    background: #1c1c1e;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.mail-sidebar {
    width: 220px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
}

.skill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
}

.skill-item {
    background: #f8f8fa;
    border-radius: 12px;
    padding: 15px;
    color: black;
    display: flex;
    align-items: center;
    gap: 15px;
}

.terminal-content {
    background: #000;
    color: #0f0;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    line-height: 1.6;
}

.hacker-banner {
    border: 2px solid #0f0;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    font-weight: bold;
    background: rgba(0, 255, 0, 0.1);
    color: #0f0;
}

.notes-content {
    background: #fff9c4;
    height: 100%;
    padding: 0;
}

#notes-area {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    resize: none;
    padding: 20px;
    font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif;
    font-size: 16px;
    outline: none;
    line-height: 1.5;
    color: #333;
}

/* Calculator */
.calc-content {
    background: black;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.calc-display {
    color: white;
    font-size: 50px;
    text-align: right;
    margin-bottom: 20px;
    font-weight: 200;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    flex: 1;
}

.calc-btn {
    border-radius: 50%;
    border: none;
    font-size: 20px;
    background: #333;
    color: white;
    cursor: pointer;
    transition: filter 0.2s;
}

.calc-btn:hover {
    filter: brightness(1.3);
}

.calc-btn:active {
    filter: brightness(1.6);
}

.btn-orange {
    background: #ff9f0a;
}

.btn-grey {
    background: #a5a5a5;
    color: black;
}

.btn-zero {
    grid-column: span 2;
    border-radius: 40px;
    text-align: left;
    padding-left: 25px;
}

/* Settings */
.wallpaper-thumb {
    height: 120px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s;
}

.wallpaper-thumb:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}