.lptp-ticker-container {
    display: flex;
    width: 100%;
    background: #000;
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.lptp-ticker-title {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.lptp-ticker-wrapper {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 48px;
}

.lptp-ticker {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.lptp-ticker li {
    display: inline-block;
    padding: 0 20px;
    list-style: none;
}

.lptp-ticker a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 16px;
}

.lptp-ticker a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

.lptp-ticker-wrapper:hover .lptp-ticker {
    animation-play-state: paused;
}

.lptp-no-posts {
    padding: 15px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 4px;
    margin: 20px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lptp-ticker-container {
        flex-direction: column;
    }
    
    .lptp-ticker-title {
        justify-content: center;
        padding: 8px 15px;
    }
    
    .lptp-ticker-wrapper {
        height: 40px;
    }
    
    .lptp-ticker a {
        font-size: 14px;
    }
}

/* Animation */
@keyframes lptp-ticker-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Admin settings styles */
.lptp-settings-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.lptp-settings-content {
    flex: 2;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lptp-settings-sidebar {
    flex: 1;
}

.lptp-settings-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lptp-settings-box h3 {
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
