/* Add this to your dev_analysis.css or inside base_layout.html's style block */

.dev-analysis-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.instructions {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.existing-files {
    margin-bottom: 30px;
}

.existing-files p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.existing-files a {
    color: #007bff;
    text-decoration: none;
}

.existing-files a:hover {
    text-decoration: underline;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 1rem;
    color: #333;
}

.file-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
}

.btn-submit, .btn-analyze {
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-submit:hover, .btn-analyze:hover {
    background-color: #45a049;
}

.dependencies {
    margin-top: 50px;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dependencies h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.dependencies ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.dependencies li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
}

.dependencies pre {
    background-color: #e9ecef;
    padding: 10px;
    font-size: 1rem;
    color: #333;
    border-radius: 4px;
    overflow-x: auto;
}

.analysis-message {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    color: #333;
}

.card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.card h3 {
    margin-top: 0;
    font-size: 1.4rem;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

textarea.notes-textarea, textarea.debug-textarea {
    width: 100%;
    font-family: monospace;
    font-size: 0.95rem;
    line-height: 1.4;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    background-color: #fdfdfd;
}

button.btn-primary {
    background-color: #007bff;
}

button.btn-secondary {
    background-color: #6c757d;
}

button.btn-primary:hover {
    background-color: #0056b3;
}

button.btn-secondary:hover {
    background-color: #5a6268;
}

button.btn-primary, button.btn-secondary {
    width: auto;
    margin-right: 10px;
    padding: 10px 20px;
}
