* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.toolbar {
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.toolbar h1 {
    font-size: 1.5em;
    margin-right: 30px;
}

.tool-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-btn, .action-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.tool-btn {
    background-color: #34495e;
    color: white;
}

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

.tool-btn.active {
    background-color: #3498db;
}

#imageTool {
    background-color: #6f42c1;
}

#imageTool:hover {
    background-color: #5a32a3;
}

.action-btn {
    background-color: #27ae60;
    color: white;
}

.action-btn:hover {
    background-color: #229954;
}

.action-btn:disabled {
    background-color: #7f8c8d;
    cursor: not-allowed;
    opacity: 0.6;
}

.action-btn:disabled:hover {
    background-color: #7f8c8d;
}

#lineColor, #textColor {
    width: 40px;
    height: 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#lineWidth, #fontSize {
    width: 80px;
}

#fontSizeValue {
    font-size: 12px;
    color: #bdc3c7;
    min-width: 35px;
}

.wire-instructions {
    font-size: 12px;
    color: #bdc3c7;
    font-style: italic;
}

.layer-panel {
    padding: 20px;
    flex: 1;
    min-height: 300px;
}

.layer-panel h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.layer-controls {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.layer-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 3px;
    background-color: #3498db;
    color: white;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s;
    flex: 1;
    min-width: 60px;
}

.layer-btn:hover {
    background-color: #2980b9;
}

.layer-btn:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

.layers-list {
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.layer-item {
    display: flex;
    flex-direction: column;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    user-select: none;
    position: relative;
}

.layer-item:hover {
    background-color: #f8f9fa;
}

.layer-item.active {
    background-color: #3498db;
    color: white;
    border-color: #2980b9;
}

.layer-item.locked {
    border-left: 4px solid #e74c3c;
}

.layer-item.dragging {
    opacity: 0.5;
    transform: rotate(2deg);
}

.layer-controls-container {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.layer-visibility, .layer-lock {
    width: 20px;
    height: 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.layer-visibility:hover, .layer-lock:hover {
    background-color: rgba(0,0,0,0.1);
}

.layer-item.active .layer-visibility:hover,
.layer-item.active .layer-lock:hover {
    background-color: rgba(255,255,255,0.2);
}

.layer-name {
    flex: 1;
    font-size: 14px;
    padding: 2px 4px;
    border-radius: 2px;
    outline: none;
}

.layer-name:focus {
    background-color: white;
    color: #2c3e50;
}

.layer-count {
    font-size: 12px;
    opacity: 0.7;
    margin-left: 8px;
}

.layer-opacity-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 11px;
}

.opacity-label {
    font-size: 11px;
    opacity: 0.8;
}

.layer-opacity-slider {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(0,0,0,0.2);
    border-radius: 2px;
    outline: none;
}

.layer-opacity-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
}

.layer-opacity-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.layer-item.active .layer-opacity-slider::-webkit-slider-thumb {
    background: white;
}

.layer-item.active .layer-opacity-slider::-moz-range-thumb {
    background: white;
}

.opacity-value {
    font-size: 11px;
    opacity: 0.8;
    min-width: 30px;
    text-align: right;
}

.layer-search {
    margin-bottom: 10px;
}

.layer-search-input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
    outline: none;
}

.layer-search-input:focus {
    border-color: #3498db;
}

.layer-batch-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 10px;
}

.batch-btn {
    padding: 4px 8px;
    border: none;
    border-radius: 2px;
    background-color: #95a5a6;
    color: white;
    cursor: pointer;
    font-size: 11px;
    transition: background-color 0.3s;
}

.batch-btn:hover {
    background-color: #7f8c8d;
}

.layer-info {
    font-size: 10px;
    color: #7f8c8d;
    margin-top: 10px;
    line-height: 1.4;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

/* Context Menu */
.context-menu {
    position: fixed;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 150px;
}

.context-menu-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    color: #2c3e50;
}

.context-menu-item:hover {
    background-color: #f8f9fa;
}

.context-menu-separator {
    height: 1px;
    background-color: #ddd;
    margin: 4px 0;
}

.layer-actions {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.layer-actions label {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    color: #2c3e50;
}

#moveToLayerSelect {
    width: 100%;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 8px;
    font-size: 12px;
}

#moveToLayerBtn {
    width: 100%;
}

.main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.sidebar {
    width: 250px;
    background-color: white;
    border-right: 1px solid #ddd;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.component-library {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
}

.component-library h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.image-upload-section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.image-upload-section h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 14px;
}

.upload-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.upload-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background-color: #17a2b8;
    color: white;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.upload-btn:hover {
    background-color: #138496;
}

.upload-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.upload-info {
    font-size: 11px;
    color: #6c757d;
    text-align: center;
}

.components-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.component-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.component-item:hover {
    background-color: #f8f9fa;
}

.component-icon {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 12px;
}

.computer-icon {
    background-color: #3498db;
}

.switch-icon {
    background-color: #e74c3c;
}

.tv-icon {
    background-color: #9b59b6;
}

.router-icon {
    background-color: #f39c12;
}

.controller-icon {
    background-color: #1abc9c;
}

.computer-icon::before { content: "PC"; }
.switch-icon::before { content: "SW"; }
.tv-icon::before { content: "TV"; }
.router-icon::before { content: "RT"; }
.controller-icon::before { content: "CT"; }

.canvas-container {
    flex: 1;
    padding: 20px;
    background-color: #ecf0f1;
}

#canvas {
    border: 2px solid #bdc3c7;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.component-item span {
    font-size: 14px;
    color: #2c3e50;
}
/* Modal
 Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.diagram-selector-modal {
    background: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.diagram-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

.diagram-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.diagram-item:last-child {
    border-bottom: none;
}

.diagram-item:hover {
    background-color: #f8f9fa;
}

.diagram-item-info {
    flex: 1;
}

.diagram-item-name {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 4px;
}

.diagram-item-meta {
    font-size: 12px;
    color: #7f8c8d;
}

.diagram-item-action {
    color: #3498db;
    font-size: 12px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.modal-button {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.modal-button-cancel {
    border: 1px solid #ddd;
    background: white;
    color: #666;
}

.modal-button-cancel:hover {
    background-color: #f8f9fa;
}

.modal-button-secondary {
    border: none;
    background: #6c757d;
    color: white;
}

.modal-button-secondary:hover {
    background-color: #5a6268;
}/* Zo
om Controls */
.zoom-controls {
    border-left: 1px solid #ddd;
    padding-left: 15px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zoom-display {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    min-width: 45px;
    text-align: center;
}

#zoomInBtn, #zoomOutBtn {
    font-size: 14px;
    min-width: 35px;
}

#resetZoomBtn {
    font-size: 11px;
    font-weight: bold;
    min-width: 35px;
}

#fitToScreenBtn {
    font-size: 16px;
    min-width: 35px;
}

#zoomInBtn:disabled, #zoomOutBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#zoomInBtn:disabled:hover, #zoomOutBtn:disabled:hover {
    background-color: #6c757d;
}/* N
ew Component Icons */
.server-icon {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    position: relative;
}

.server-icon::before {
    content: '▬';
    color: #7f8c8d;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.printer-icon {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    position: relative;
}

.printer-icon::before {
    content: '🖨';
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.camera-icon {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    position: relative;
    border-radius: 50%;
}

.camera-icon::before {
    content: '📷';
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}/* Com
ponent Manager Styles */
.component-manager-modal,
.component-editor-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.component-manager-content {
    width: 800px;
    height: 600px;
}

.component-editor-content {
    width: 700px;
    height: 700px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    background-color: #f8f9fa;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
}

.close-modal-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal-btn:hover {
    color: #e74c3c;
}

.component-manager-body,
.component-editor-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.component-manager-toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.custom-components-list h3 {
    margin-top: 0;
    color: #2c3e50;
}

.custom-component-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

.component-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.component-icon-display {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ecf0f1;
    border-radius: 5px;
}

.component-details strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

.component-details small {
    color: #7f8c8d;
}

.component-actions {
    display: flex;
    gap: 8px;
}

.component-actions button {
    padding: 6px 12px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.edit-btn {
    background-color: #3498db;
    color: white;
}

.edit-btn:hover {
    background-color: #2980b9;
}

.delete-btn {
    background-color: #e74c3c;
    color: white;
}

.delete-btn:hover {
    background-color: #c0392b;
}

.no-components {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 40px;
}

/* Component Editor Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

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

.form-group textarea {
    resize: vertical;
    font-family: 'Courier New', monospace;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 12px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cancel-btn {
    padding: 10px 20px;
    background-color: #95a5a6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cancel-btn:hover {
    background-color: #7f8c8d;
}

.save-btn {
    padding: 10px 20px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.save-btn:hover {
    background-color: #229954;
}

/* Component Item Actions */
.component-item {
    position: relative;
    cursor: grab;
}

.component-item:active {
    cursor: grabbing;
}

.component-item[data-custom="true"] .component-actions {
    position: absolute;
    top: 2px;
    right: 2px;
    display: none;
    flex-direction: column;
    gap: 2px;
    z-index: 10;
}

.component-item[data-custom="true"]:hover .component-actions {
    display: flex;
}

.edit-component-btn,
.delete-component-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 3px;
    padding: 2px 4px;
    font-size: 10px;
    cursor: pointer;
    color: white;
    pointer-events: auto;
}

.edit-component-btn:hover {
    background: rgba(52, 152, 219, 0.9);
}

.delete-component-btn:hover {
    background: rgba(231, 76, 60, 0.9);
}

/* Drag feedback */
.component-item.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

.component-item[data-custom="true"] {
    border: 2px dashed transparent;
    transition: border-color 0.2s ease;
}

.component-item[data-custom="true"]:hover {
    border-color: #f39c12;
}

.custom-component-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22) !important;
}

#manageComponentsBtn {
    background-color: #9b59b6;
    color: white;
    margin-top: 10px;
}

#manageComponentsBtn:hover {
    background-color: #8e44ad;
}/* SV
G Input Styles */
.svg-input-container {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.svg-input-container textarea {
    flex: 1;
    min-height: 100px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    resize: vertical;
}

.svg-preview {
    flex: 0 0 150px;
}

.svg-preview label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 12px;
}

.svg-preview-container {
    width: 100px;
    height: 100px;
    border: 2px dashed #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    padding: 10px;
}

.svg-preview-container svg {
    max-width: 100%;
    max-height: 100%;
}

/* Custom component icon styling */
.custom-component-icon svg {
    width: 24px;
    height: 24px;
    color: #2c3e50;
}

.component-icon-display svg {
    width: 24px;
    height: 24px;
    color: #2c3e50;
}/* S
VG Input Styles */
.svg-input-container {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.svg-input-container textarea {
    flex: 1;
    min-height: 100px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    resize: vertical;
}

.svg-preview {
    flex: 0 0 150px;
}

.svg-preview label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 12px;
}

.svg-preview-container {
    width: 100px;
    height: 100px;
    border: 2px dashed #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    padding: 10px;
}

.svg-preview-container svg {
    max-width: 100%;
    max-height: 100%;
}

/* Custom component icon styling */
.custom-component-icon svg {
    width: 24px;
    height: 24px;
    color: #2c3e50;
}

.component-icon-display svg {
    width: 24px;
    height: 24px;
    color: #2c3e50;
}
/*
 Image Upload Styles */
.form-group input[type="file"] {
    padding: 8px;
    border: 2px dashed #bdc3c7;
    border-radius: 4px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: border-color 0.3s;
}

.form-group input[type="file"]:hover {
    border-color: #3498db;
    background-color: #ecf0f1;
}

.form-help {
    display: block;
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 12px;
}

.current-icon {
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
}

.current-icon label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #495057;
}

.current-icon img {
    display: block;
    margin-top: 5px;
}

/* Custom component icon styles */
.custom-component-icon img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.component-icon-display img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}/* Pr
int Modal Styles */
.print-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.print-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.print-modal .modal-content {
    background: white;
    border-radius: 8px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.print-modal .modal-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.print-modal .modal-header h2 {
    margin: 0;
    color: #2c3e50;
}

.print-modal .close-modal-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #95a5a6;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.print-modal .close-modal-btn:hover {
    color: #e74c3c;
}

.print-modal .modal-body {
    padding: 20px;
}

.print-options {
    margin-bottom: 20px;
}

.option-group {
    margin-bottom: 15px;
}

.option-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    transition: all 0.3s;
}

.option-group label:hover {
    border-color: #3498db;
    background-color: #f8f9fa;
}

.option-group input[type="radio"] {
    margin-right: 10px;
}

.option-group label:has(input:checked) {
    border-color: #3498db;
    background-color: #e3f2fd;
}

.print-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.print-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.cancel-btn {
    background-color: #95a5a6;
    color: white;
}

.cancel-btn:hover {
    background-color: #7f8c8d;
}

.print-btn {
    background-color: #3498db;
    color: white;
}

.print-btn:hover {
    background-color: #2980b9;
}