45 lines
749 B
CSS
45 lines
749 B
CSS
/* Classification Section */
|
|
.classification-section {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.classification-title {
|
|
font-size: 1em;
|
|
font-weight: 600;
|
|
margin-bottom: 0.8rem;
|
|
color: #333;
|
|
}
|
|
|
|
.classification-field {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.classification-field label {
|
|
display: block;
|
|
font-size: 0.9em;
|
|
font-weight: 500;
|
|
margin-bottom: 0.4rem;
|
|
color: #555;
|
|
}
|
|
|
|
.classification-select {
|
|
width: 100%;
|
|
padding: 0.6rem;
|
|
font-size: 1em;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
background: white;
|
|
cursor: pointer;
|
|
transition: border-color 0.2s;
|
|
}
|
|
|
|
.classification-select:focus {
|
|
outline: none;
|
|
border-color: #007bff;
|
|
box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
|
|
}
|
|
|
|
.classification-select:hover {
|
|
border-color: #999;
|
|
}
|