.logo-builder-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.controls-panel {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.preview-panel {
    flex: 2;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.canvas-wrapper {
    width: 100%;
    max-width: 600px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

canvas#logo-canvas {
    width: 100%;
    height: auto;
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.download-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.download-actions .btn {
    width: 100%;
    justify-content: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
}

.btn-ghost-orange {
    background-color: transparent;
    color: #DD502C;
    border: 2px solid #DD502C;
}

.btn-ghost-orange:hover {
    background-color: #DD502C;
    color: white;
}

.btn-ghost-green {
    background-color: transparent;
    color: #36443C;
    border: 2px solid #36443C;
}

.btn-ghost-green:hover {
    background-color: #36443C;
    color: white;
}

.btn-action-green {
    background-color: #36443C;
    color: white;
    border: 2px solid #36443C;
}

.btn-action-green:hover {
    background-color: #2b3630;
    border-color: #2b3630;
}
