/* Custom styles for the application */

/* Project page specific styles */
#threejs-container {
    border-radius: 0.375rem;
    overflow: hidden;
}

/* Ensure proper height for project page */
.project-page {
    min-height: 100vh;
}

/* Custom scrollbar for sidebar */
.card-body::-webkit-scrollbar {
    width: 6px;
}

.card-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.card-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.card-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Form control styling */
.form-control-sm {
    font-size: 0.875rem;
}

.form-label.small {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6c757d;
}

/* Button group styling */
.btn-group-sm .btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Three.js canvas styling */
canvas {
    display: block;
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success state */
.success {
    background-color: #d4edda !important;
    border-color: #c3e6cb !important;
    color: #155724 !important;
}

.headline-gradient {
    background: linear-gradient(101.17deg, #0b1b4f 0%, #11266a 29.17%, #317df0 66.15%, #ad35bf 100%);
    color: #fff;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 32px 0 rgba(49, 125, 240, 0.10);
} 