/* Estilos combinados de deep.html y detalles de index.html para colorear SVG */
body {
    background-color: #f9f7f0;
    color: #333;
    font-family: 'Comic Sans MS', 'Arial Rounded MT Bold', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background: linear-gradient(135deg, #6bbd6e 0%, #4CAF50 100%);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-bottom: 4px solid #388E3C;
}
.logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.slogan {
    font-size: 1.2rem;
    opacity: 0.9;
}
.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.page-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2E7D32;
    font-size: 2.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 1rem;
}
.page-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A, #4CAF50);
    border-radius: 2px;
}
.drawing-area {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid #e0e0e0;
}
#image-selector {
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}
.color-palette {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.color-button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.color-button:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.color-button.selected {
    transform: scale(1.3);
    box-shadow: 0 0 0 3px white, 0 0 0 5px #4CAF50;
}
.tools {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    align-items: center;
}
.tools button {
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
    color: #555;
    border: 1px solid #ccc;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.tools button:hover {
    background: linear-gradient(to bottom, #e0e0e0, #d0d0d0);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
    .logo { font-size: 2rem; }
    .slogan { font-size: 1rem; }
    .container { padding: 0 0.5rem; }
    .drawing-area { padding: 1rem; }
}
