.wdm-directory-wrapper {
font-family: inherit;
color: #707070;
margin: 20px 0;
}
.wdm-directory-wrapper * {
box-sizing: border-box;
} .wdm-search-bar {
margin-bottom: 30px;
background: #e5e5e5;
padding: 20px;
border-radius: 8px;
}
.wdm-search-input-group {
display: flex;
align-items: center;
background: #ffffff;
border: 1px solid #b5b5b5;
border-radius: 4px;
padding: 5px 10px;
max-width: 600px;
margin: 0 auto;
}
.wdm-search-icon {
width: 20px;
height: 20px;
color: #b0c0c9;
margin-right: 10px;
}
.wdm-search-input {
flex: 1;
border: none !important;
background: transparent !important;
padding: 10px !important;
font-size: 16px;
color: #707070;
box-shadow: none !important;
}
.wdm-search-input:focus {
outline: none !important;
box-shadow: none !important;
}
.wdm-btn-primary {
background: var(--wdm-primary, #0c71c3) !important;
color: #ffffff !important;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
transition: filter 0.3s ease;
}
.wdm-btn-primary:hover {
filter: brightness(0.85); } .wdm-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
}
.wdm-card {
background: #ffffff;
border: 1px solid #e5e5e5;
border-top: 4px solid var(--wdm-primary, #0c71c3);
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: transform 0.2s ease, box-shadow 0.2s ease;
overflow: hidden;
display: flex;
flex-direction: column;
}
.wdm-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0,0,0,0.1);
border-color: var(--wdm-secondary, #90bcdf);
}
.wdm-card-header {
padding: 15px 20px;
background: #f9f9f9;
border-bottom: 1px solid #e5e5e5;
display: flex;
justify-content: space-between;
align-items: center;
}
.wdm-name {
margin: 0 !important;
font-size: 18px !important;
color: var(--wdm-primary, #0c71c3) !important;
font-weight: bold;
}
.wdm-badge {
background: var(--wdm-secondary, #90bcdf);
color: #ffffff;
font-size: 12px;
padding: 4px 8px;
border-radius: 12px;
font-weight: bold;
}
.wdm-card-body {
padding: 20px;
flex: 1;
}
.wdm-info {
margin: 0 0 10px 0 !important;
font-size: 14px;
line-height: 1.5;
color: #707070;
}
.wdm-info strong {
color: #b5b5b5;
font-weight: 600;
}
.wdm-info a {
color: var(--wdm-primary, #0c71c3);
text-decoration: none;
transition: color 0.2s;
}
.wdm-info a:hover {
color: var(--wdm-secondary, #90bcdf);
}
.wdm-no-results {
text-align: center;
padding: 40px;
background: #e5e5e5;
border-radius: 8px;
color: #707070;
font-size: 18px;
display: flex;
justify-content: center;
align-items: center;
min-height: 150px;
} .wdm-pagination {
display: flex;
justify-content: center;
margin-top: 40px;
gap: 10px;
}
.wdm-page-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border: 1px solid #b0c0c9;
border-radius: 4px;
color: #707070;
text-decoration: none;
font-weight: bold;
transition: all 0.2s;
}
.wdm-page-link:hover {
background: #e5e5e5;
color: var(--wdm-primary, #0c71c3);
}
.wdm-page-active {
background: var(--wdm-primary, #0c71c3);
color: #ffffff;
border-color: var(--wdm-primary, #0c71c3);
}
.wdm-page-active:hover {
background: var(--wdm-primary, #0c71c3);
color: #ffffff;
cursor: default;
}