/*
Theme Name: SocialWP
Theme URI: https://example.com/socialwp
Author: SocialWP Team
Description: Πλήρες Social Media Theme με εγγραφή, προφίλ, dashboard, hashtags και Rich URL Previews.
Version: 1.1.0
Text Domain: socialwp
*/

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
}

/* WP Classes Alignment */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
img { max-width: 100%; height: auto; }

/* Utilities */
.spinner {
   border: 3px solid rgba(255, 255, 255, 0.3);
   width: 16px;
   height: 16px;
   border-radius: 50%;
   border-left-color: #ffffff;
   animation: spin 1s ease infinite;
   display: inline-block;
   vertical-align: middle;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Link Preview Card */
.link-preview-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: background-color 0.2s;
    margin-top: 0.5rem;
}
.link-preview-card:hover {
    background-color: #f9fafb;
}
.link-preview-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #f3f4f6;
}
.link-preview-content {
    padding: 0.75rem;
}
.link-preview-title {
    font-weight: 700;
    font-size: 0.875rem;
    color: #111827;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.link-preview-domain {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    font-weight: 700;
}

/* Hashtags */
.socialwp-hashtag {
    color: #2563eb; /* blue-600 */
    font-weight: 700;
    text-decoration: none;
}
.socialwp-hashtag:hover {
    text-decoration: underline;
}

/* Video Embeds Fix (Square) */
.socialwp-video-embed {
    position: relative;
    width: 100%;
}

.socialwp-video-embed iframe, 
.socialwp-video-embed object, 
.socialwp-video-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Feed Footer Menu (Small Text) */
.feed-footer-menu li {
    display: inline-block;
}
.feed-footer-menu li a {
    font-size: 10px; /* UPDATED: Changed to 10px for smaller text */
    color: #6b7280; /* text-gray-500 */
    text-decoration: none;
    transition: color 0.2s;
}
.feed-footer-menu li a:hover {
    color: #2563eb; /* text-blue-600 */
    text-decoration: underline;
}

/* Global Footer Menu */
.footer-menu li {
    display: inline-block;
}
.footer-menu li a {
    text-decoration: none;
    transition: color 0.2s;
    color: #6b7280; /* text-gray-500 */
}
.footer-menu li a:hover {
    color: #2563eb; /* blue-600 */
    text-decoration: underline;
}