/* SCDev Pill Menu Widget Styles */

/* Search Bar */
.scdev-pill-search-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.scdev-pill-search {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.scdev-pill-search:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

body.night-mode .scdev-pill-search {
    background: #2c3e50;
    border-color: #555;
    color: #e0e0e0;
}

body.night-mode .scdev-pill-search:focus {
    border-color: #64b5f6;
    box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.1);
}

.scdev-pill-search::placeholder {
    color: #999;
}

body.night-mode .scdev-pill-search::placeholder {
    color: #777;
}

/* Search Results Dropdown */
.scdev-pill-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #667eea;
    border-radius: 12px;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

.scdev-pill-search-results.active {
    display: block;
}

body.night-mode .scdev-pill-search-results {
    background: #2c3e50;
    border-color: #64b5f6;
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8f9fa;
}

body.night-mode .search-result-item {
    border-bottom-color: #444;
}

body.night-mode .search-result-item:hover {
    background: #34495e;
}

.search-result-item a {
    text-decoration: none;
    color: #333;
    display: block;
}

body.night-mode .search-result-item a {
    color: #e0e0e0;
}

.search-result-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
    color: #667eea;
}

body.night-mode .search-result-title {
    color: #64b5f6;
}

.search-result-excerpt {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

body.night-mode .search-result-excerpt {
    color: #999;
}

.search-no-results {
    padding: 15px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

.search-loading {
    padding: 15px;
    text-align: center;
    color: #667eea;
    font-size: 13px;
}

body.night-mode .search-loading {
    color: #64b5f6;
}

/* Pill Menu */
.scdev-pill-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0;
    margin: 0;
}

.pill-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    text-decoration: none !important;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.pill-menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.pill-menu-item:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Alternate colors for variety */
.pill-menu-item:nth-child(2n) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.pill-menu-item:nth-child(2n):hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.pill-menu-item:nth-child(3n) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.pill-menu-item:nth-child(3n):hover {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

.pill-menu-item:nth-child(4n) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.pill-menu-item:nth-child(4n):hover {
    background: linear-gradient(135deg, #38f9d7 0%, #43e97b 100%);
}

.pill-menu-item:nth-child(5n) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.pill-menu-item:nth-child(5n):hover {
    background: linear-gradient(135deg, #fee140 0%, #fa709a 100%);
}

/* Night mode adjustments */
body.night-mode .pill-menu-item {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body.night-mode .pill-menu-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Widget title styling */
.scdev-pill-menu-widget .widget-title {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive - single column on very small screens */
@media (max-width: 320px) {
    .scdev-pill-menu {
        grid-template-columns: 1fr;
    }
}

/* Adjust for sidebar width */
@media (max-width: 768px) {
    .pill-menu-item {
        font-size: 12px;
        padding: 0 10px;
        height: 30px;
    }
}
