/* Zusätzliche Styles für Druckbereich-Verwaltung */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    z-index: 10000;
    animation: slideIn 0.3s;
}

.toast-success {
    background: #4CAF50;
}

.toast-error {
    background: #f44336;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.drawing-instructions {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 10000;
}

/* /public/css/admin/printable-areas.css */

.printable-areas-admin {
    min-height: 600px;
}

.tools-sidebar {
    background: #f8f9fa;
    border-right: 1px solid #dee2e6;
    padding: 15px;
    min-height: 600px;
}

.tool-section {
    margin-bottom: 20px;
}

.tool-section h5 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #6c757d;
}

.tool-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.tool-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 5px;
    border: 1px solid #dee2e6;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
}

.tool-btn:hover {
    background: #4CAF50;
    color: white;
}

#stopDrawingBtn:hover {
    background: #dc3545 !important;
    color: white;
}

.tool-btn i {
    font-size: 20px;
    margin-bottom: 5px;
}

.tool-btn span {
    font-size: 11px;
}

.canvas-area {
    padding: 15px;
}

.canvas-wrapper {
    background: white;
    border: 1px solid #dee2e6;
    position: relative;
    padding: 20px;
    min-height: 640px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#area-design-canvas {
    border: 1px solid #e0e0e0;
}

.coordinates-display {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
}

.properties-sidebar {
    background: #f8f9fa;
    border-left: 1px solid #dee2e6;
    padding: 15px;
    min-height: 600px;
}

.properties-panel,
.areas-list-panel,
.actions-panel {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.areas-list-item {
    padding: 10px;
    border: 1px solid #dee2e6;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 3px;
}

.areas-list-item:hover {
    background: #f8f9fa;
}

.canvas-toolbar {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.ml-2 {
    margin-left: 10px;
}

.canvas-status {
    background: #f8f9fa;
    padding: 10px;
    margin-top: 10px;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
}

/* Content Badges */
.content-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    vertical-align: middle;
}

.content-badge.text-only {
    background: #E3F2FD;
    border: 1px solid #2196F3;
}

.content-badge.image-only {
    background: #FFF3E0;
    border: 1px solid #FF9800;
}

.content-badge.both {
    background: #E8F5E9;
    border: 1px solid #4CAF50;
}

/* Properties Panel Styles */
.property-group {
    margin-bottom: 10px;
}

.property-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #495057;
}

.property-group .form-control-sm {
    height: 28px;
    font-size: 13px;
}

.property-actions {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #dee2e6;
}

#area-properties h6 {
    font-size: 13px;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 8px;
}

/* Image Selector */
.image-selector {
    margin-bottom: 10px;
}

.image-selector label {
    font-weight: 600;
    margin-right: 10px;
}

.image-selector select {
    padding: 5px 10px;
    border: 1px solid #dee2e6;
    border-radius: 3px;
}