.garden-composer-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.garden-composer-sidebar {
    width: 300px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.dropdown-selection {
    margin-bottom: 20px;
}

.dropdown-group {
    margin-bottom: 15px;
}

.dropdown-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.dropdown-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.dropdown-group select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.dropdown-group select:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.dropdown-group select option {
    padding: 8px;
}

#category-data {
    display: none;
}

.garden-composer-canvas {
    flex: 1;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 300px;
}

#garden-canvas {
    width: 100%;
    height: 500px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    background: #fff;
}

.canvas-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.canvas-controls button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    flex: 1;
    min-width: 120px;
}

.canvas-controls button:hover {
    background: #45a049;
}

#clear-canvas {
    background: #f44336;
}

#clear-canvas:hover {
    background: #da190b;
}

/* התאמות למובייל */
@media screen and (max-width: 768px) {
    .garden-composer-container {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }

    .garden-composer-sidebar {
        width: 100%;
        order: 2;
    }

    .garden-composer-canvas {
        order: 1;
        width: 100%;
    }

    #garden-canvas {
        height: 400px;
    }

    .dropdown-group label {
        font-size: 13px;
    }

    .dropdown-group select {
        font-size: 13px;
        padding: 6px 10px;
    }

    .canvas-controls {
        flex-direction: column;
    }

    .canvas-controls button {
        width: 100%;
    }
}

/* התאמות למסכים קטנים מאוד */
@media screen and (max-width: 480px) {
    .garden-composer-container {
        margin: 10px 0;
    }

    #garden-canvas {
        height: 300px;
    }

    .dropdown-group label {
        font-size: 12px;
    }

    .dropdown-group select {
        font-size: 12px;
        padding: 5px 8px;
    }
}

/* התאמות למסכים גדולים */
@media screen and (min-width: 1200px) {
    .garden-composer-container {
        max-width: 1400px;
        margin: 20px auto;
    }

    .garden-composer-sidebar {
        width: 350px;
    }

    #garden-canvas {
        height: 600px;
    }
} 