.uml-container {
max-width: 100%;
margin: 0 auto;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
color: #333;
}
.uml-header {
margin-bottom: 20px;
}
.uml-title {
font-size: 24px;
font-weight: 600;
color: #a6000a !important; 
margin: 0 0 20px 0;
text-align: center;
} .uml-product-selector {
margin-bottom: 25px;
}
.uml-label {
display: block;
margin-bottom: 8px;
font-weight: 600;
}
.uml-select {
width: 100%;
max-width: 400px;
padding: 10px 15px;
border: 1px solid #ddd;
border-radius: 4px;
background-color: #fff;
font-size: 16px;
color: #333;
appearance: none;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23a6000a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
background-repeat: no-repeat;
background-position: right 10px center;
background-size: 16px;
transition: border-color 0.3s, box-shadow 0.3s;
}
.uml-select:focus {
outline: none;
border-color: #a6000a !important;
box-shadow: 0 0 0 2px rgba(166, 0, 10, 0.2);
} .uml-search-container {
margin-bottom: 20px;
}
.uml-search {
width: 100%;
max-width: 400px;
padding: 10px 15px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
transition: border-color 0.3s, box-shadow 0.3s;
}
.uml-search:focus {
outline: none;
border-color: #a6000a;
box-shadow: 0 0 0 2px rgba(166, 0, 10, 0.2);
} .uml-loading {
display: none;
text-align: center;
padding: 20px 0;
}
.uml-spinner {
display: inline-block;
width: 30px;
height: 30px;
border: 3px solid rgba(166, 0, 10, 0.3);
border-radius: 50%;
border-top-color: #a6000a;
animation: uml-spin 1s linear infinite;
margin-bottom: 10px;
}
@keyframes uml-spin {
to {
transform: rotate(360deg);
}
} .uml-brands-container {
background-color: #f9f9f9;
border-radius: 4px;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.uml-product-name {
font-size: 20px;
font-weight: 600;
color: #a6000a;
margin: 0 0 10px 0;
}
.uml-brands-count {
color: #666;
margin-bottom: 15px;
}
.uml-brands-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.uml-brand-item {
background-color: #fff;
border: 1px solid #e0e0e0;
border-radius: 4px;
padding: 8px 12px;
display: inline-block;
transition: all 0.2s ease;
}
.uml-brand-item:hover {
border-color: #a6000a;
box-shadow: 0 2px 4px rgba(166, 0, 10, 0.3);
transform: translateY(-2px);
} .uml-no-results {
padding: 15px;
background-color: #fafafa;
border: 1px solid #eee;
border-radius: 4px;
color: #666;
text-align: center;
} @media (max-width: 768px) {
.uml-brands-list {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.uml-brands-list {
display: block;
}
.uml-brand-item {
display: block;
margin-bottom: 8px;
}
.uml-select,
.uml-search {
max-width: 100%;
}
}