/* Shortener Utility Styles */
.shortener-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Info Panel */
.info-panel {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.info-content {
    font-size: 14px;
    color: var(--color-secondary);
    line-height: 1.5;
}

.info-content details {
    margin: 0;
}

.info-content summary {
    color: var(--color-primary);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-fast);
}

.info-content summary:hover {
    color: var(--color-button-bg);
}

.info-content-inner {
    padding-top: 15px;
    animation: fadeIn 0.3s ease;
}

details.info-expanded {
    animation: pulse 0.5s ease;
}

.info-content p {
    margin-bottom: 10px;
}

.info-content ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.info-content li {
    margin-bottom: 5px;
}

.service-link {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    border-bottom: 1px dotted var(--color-secondary);
}

.service-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Section Titles */
.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-small {
    font-size: 12px;
    padding: 6px 10px;
}

/* Service Selection */
.service-selection-section {
    margin-bottom: 30px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 20px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover:not(.disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card.active {
    border-color: var(--color-button-bg);
}

.service-card.disabled {
    opacity: 0.7;
    cursor: not-allowed;
    filter: grayscale(50%);
}

.service-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f44336;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 0 0 0 8px;
    text-transform: uppercase;
}

.service-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-limits {
    font-size: 13px;
    margin-bottom: 10px;
}

.service-limit {
    display: block;
    margin-bottom: 4px;
}

.service-description {
    font-size: 14px;
    color: var(--color-secondary);
    line-height: 1.4;
}

/* is.gd Action Selector */
.isgd-action-section {
    margin-bottom: 30px;
    animation: fadeIn 0.3s ease;
}

.action-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.action-btn {
    flex: 1;
    background-color: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: var(--border-radius-small);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600; /* Updated: Match font weight to other buttons */
    color: var(--color-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.action-btn:hover:not(.active) {
    background-color: #f1f1f1;
    border-color: #ccc;
}

.action-btn.active {
    background-color: var(--color-button-bg);
    color: white;
    border-color: var(--color-button-bg);
}

/* Shortener Section */
.shortener-section {
    margin-bottom: 30px;
    animation: fadeIn 0.3s ease;
}

.shortener-card {
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 20px;
    transition: all var(--transition-medium);
}

.shortener-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600; /* Match button text weight */
    margin-bottom: 8px;
    color: var(--color-primary);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius-small);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color var(--transition-fast);
    background-color: white;
}

.form-input:focus {
    border-color: var(--color-button-bg);
    outline: none;
    box-shadow: 0 0 0 3px rgba(34,34,34,0.1);
}

.custom-url-input-group {
    display: flex;
    align-items: center;
}

.url-prefix {
    background-color: #f8f9fa;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-right: none;
    border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-secondary);
    white-space: nowrap;
}

.custom-url-input-group .form-input {
    border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
}

.input-hint {
    font-size: 12px;
    color: var(--color-secondary);
    margin-top: 5px;
}

/* Advanced Options */
details {
    margin-top: 20px;
}

summary {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-button-bg);
    display: inline-block;
    user-select: none;
    transition: color var(--transition-fast);
}

summary:focus {
    outline: none;
}

summary:hover {
    color: #121212;
}

.advanced-options-content {
    margin-top: 10px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: var(--border-radius-small);
}

.option-row {
    margin-bottom: 15px;
}

.option-row:last-child {
    margin-bottom: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    accent-color: var(--color-button-bg);
}

.option-info {
    font-size: 12px;
    color: var(--color-secondary);
    margin-top: 4px;
    margin-left: 24px;
}

.option-row label:not(.checkbox-label) {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Shortener Actions */
.shortener-actions {
    display: flex;
    gap: 10px;
}

.shortener-actions button {
    flex: 1;
}

/* Notification Area */
.notification-area {
    display: none;
    background-color: #f8f9fa;
    border-left: 6px solid #F44336;
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 4px;
    animation: slideDown 0.3s ease;
}

.notification-area.visible {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-area.success {
    border-left-color: #4CAF50;
}

.notification-message {
    flex-grow: 1;
    color: #d32f2f;
}

.notification-area.success .notification-message {
    color: #2e7d32;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    color: #666;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.notification-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Result Section */
.result-section {
    margin-bottom: 30px;
    animation: fadeIn 0.3s ease;
}

.result-card {
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: all var(--transition-medium);
}

.result-status {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.result-url-container {
    display: flex;
    margin-bottom: 20px;
}

.result-url {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-right: none;
    border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background-color: #f8f9fa;
    cursor: text;
}

.copy-btn {
    background-color: var(--color-button-bg);
    color: white;
    border: none;
    width: 48px;
    border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.copy-btn:hover {
    background-color: #121212;
}

.copy-btn svg {
    width: 20px;
    height: 20px;
}

.result-actions {
    display: flex;
    gap: 10px;
}

.result-actions button {
    flex: 1;
}

/* History Section */
.history-section {
    margin-bottom: 30px;
    animation: fadeIn 0.3s ease;
}

.history-card {
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 20px;
    max-height: 400px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.history-list {
    max-height: 360px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd #f8f9fa;
    overflow-x: hidden;
}

/* Enhanced History Item Design */
.history-item {
    position: relative;
    padding: 16px;
    margin-bottom: 12px;
    background-color: #f9f9f9;
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: block;
    border-left: none !important; /* Force remove any colored borders */
    background-color: #f9f9fa !important; /* Override any background colors */
}

.history-item:last-child {
    margin-bottom: 0;
}

.history-item:hover {
    background-color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* Enhanced header with badge styling - adjusted for consistent layout */
.history-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.history-item-badge-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.history-item-service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--border-radius-small); /* Match other buttons */
    background-color: var(--color-button-bg);
    color: white;
    letter-spacing: 0.5px;
}

.history-item-type {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    padding-left: 4px;
}

/* Improved content layout */
.history-item-content {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Better URL display */
.url-container {
    display: flex;
    align-items: center;
}

.url-label {
    flex-shrink: 0;
    width: 80px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-secondary);
}

.url-value {
    flex-grow: 1;
    padding: 8px 12px;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    word-break: break-all;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.short-url {
    font-weight: 500;
    color: var(--color-button-bg);
    font-size: 14px;
}

.original-url {
    font-size: 13px;
    color: var(--color-secondary);
}

/* Improved action buttons */
.history-item-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.history-action-btn {
    background-color: #f1f1f1;
    border: none;
    padding: 6px 12px;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    color: var(--color-secondary);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.history-action-btn:hover {
    background-color: var(--color-button-bg);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.history-action-btn svg {
    width: 14px;
    height: 14px;
}

/* History item delete button */
.history-delete-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.history-delete-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #d32f2f;
}

/* Animations */
.history-item-new {
    animation: justFadeIn 0.5s ease; /* Use a different animation name to avoid conflicts */
}

.history-item-remove {
    animation: justFadeOut 0.3s ease forwards !important;
    border-left: none !important;
}

@keyframes justFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes justFadeOut {
    from { 
        opacity: 1; 
        transform: translateY(0); 
    }
    to { 
        opacity: 0; 
        transform: translateY(10px); 
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(10px); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }
    50% { transform: scale(1.01); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
    100% { transform: scale(1); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }
}

@keyframes highlightSuccess {
    0% { background-color: transparent; }
    30% { background-color: transparent; } /* No color change */
    100% { background-color: transparent; }
}

.success-animation {
    animation: pulse 0.6s ease;
}

.history-item-new {
    animation: fadeIn 0.5s ease;
}

.history-item-remove {
    animation: fadeOut 0.3s ease forwards;
}

.fade-in-animation {
    animation: fadeIn 0.3s ease;
}

.fade-out-animation {
    animation: fadeOut 0.3s ease forwards;
}

.copy-success-animation {
    animation: highlightSuccess 1s ease;
    background-color: rgba(76, 175, 80, 0.2);
    color: #2e7d32;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .shortener-actions, .result-actions {
        flex-direction: column;
    }
    
    .shortener-container {
        padding: 10px;
    }
    
    .history-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .history-item-urls {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .history-item-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .history-item-original,
    .history-item-short {
        width: 100%;
    }

    .url-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .url-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .custom-url-input-group {
        flex-direction: column;
    }
    
    .url-prefix {
        border-radius: var(--border-radius-small);
        border-right: 2px solid #ddd;
        margin-bottom: 5px;
        width: 100%;
    }
    
    .custom-url-input-group .form-input {
        border-radius: var(--border-radius-small);
        width: 100%;
    }
    
    .result-url-container {
        flex-direction: column;
    }
    
    .result-url {
        border-right: 2px solid #ddd;
        border-radius: var(--border-radius-small);
        margin-bottom: 10px;
    }
    
    .copy-btn {
        width: 100%;
        border-radius: var(--border-radius-small);
        padding: 12px;
    }
    
    .compact-header h1 {
        font-size: 26px;
    }
    
    .compact-header h2 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .shortener-section, 
    .result-section,
    .history-section,
    .service-selection-section {
        margin-bottom: 20px;
    }
    
    .shortener-card,
    .result-card,
    .history-card {
        padding: 15px;
    }
    
    .section-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .modal-container {
        padding: 20px;
    }
}

/* Improved Modal Dialog for Service Info */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    padding: 28px;
    max-width: 90%;
    width: 550px;
    max-height: 85vh;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(25px) scale(0.98);
    transition: opacity 0.4s ease, transform 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-overlay.active .modal-container {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-secondary);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    font-size: 24px;
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-primary);
    transform: rotate(90deg);
}

.modal-content {
    color: var(--color-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.modal-content p {
    margin-bottom: 16px;
}

.modal-content a {
    color: var(--color-button-bg);
    text-decoration: none;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
    border-bottom: 1px dotted var(--color-button-bg);
    padding-bottom: 1px;
}

.modal-content a:hover {
    color: #000;
    border-bottom-color: #000;
}

.modal-content ul {
    margin-left: 18px;
    margin-bottom: 20px;
}

.modal-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}

.modal-content strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Service Info Icon - Enhanced */
.service-info-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--color-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.service-info-btn:hover, .service-info-btn:focus {
    background-color: white;
    color: var(--color-button-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.service-card.active .service-info-btn {
    color: var(--color-primary);
    background-color: white;
}

.service-card.disabled .service-info-btn {
    display: none;
}

/* Modal Dialog for Service Info */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 25px;
    max-width: 90%;
    width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    opacity: 1;
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-secondary);
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 20px;
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-primary);
}

.modal-content {
    margin-bottom: 20px;
    color: var(--color-secondary);
    line-height: 1.5;
}

/* Service Info Icon */
.service-info-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    border-radius: 50%;
    color: var(--color-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    z-index: 5;
}

.service-info-btn:hover, .service-info-btn:focus {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-primary);
}

.service-card.active .service-info-btn {
    color: var(--color-primary);
}

.service-card.disabled .service-info-btn {
    display: none;
}

/* Match mealkits compact-header styling */
.compact-header {
    text-align: center;
    margin-bottom: 40px;
}

.compact-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.compact-header h2 {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Confirmation dialog styling */
.confirmation-container {
    max-width: 450px;
}

.confirmation-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btn-primary {
    background-color: var(--color-button-bg);
    color: white;
    border: none;
    border-radius: var(--border-radius-small);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.btn-primary:hover {
    background-color: #000000;
}

.btn-secondary {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-small);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    background-color: #f1f1f1;
    border-color: #ccc;
}