/* Friendbook Blue - Classic Facebook (2006-2008) Style */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
    font-size: 11px;
    color: var(--color-text, #333);
    background: var(--color-background, #f7f7f7);
    line-height: 1.4;
}

/* Header - Classic Blue Banner */
.header {
    background: var(--color-primary, #3b5998);
    color: var(--color-text-inverse, white);
    padding: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
}

.header-logo a {
    color: var(--color-text-inverse, white);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.header-logo-link {
    color: var(--color-text-inverse, white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo-image {
    max-height: 40px;
    max-width: 200px;
    object-fit: contain;
    vertical-align: middle;
    display: block;
}

.header-logo-link span {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-text-inverse, white);
}

.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-nav a {
    color: var(--color-text-inverse, white);
    text-decoration: none;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 2px;
    transition: background 0.2s;
}

.header-nav a:hover {
    background: rgba(255,255,255,0.1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notifications-link {
    position: relative;
    color: var(--color-text-inverse, white);
    text-decoration: none;
    font-size: 20px;
    padding: 4px 6px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
}

.notifications-link:hover {
    background: rgba(255,255,255,0.1);
    transition: background 0.2s;
}

.notifications-icon {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
}

.notifications-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff0000;
    color: var(--color-text-inverse, white);
    font-size: 10px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.header-right .user-link {
    color: var(--color-text-inverse, white);
    text-decoration: none;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 2px;
    transition: background 0.2s;
}

.header-right .user-link:hover {
    background: rgba(255,255,255,0.1);
}

.logout-link {
    color: var(--color-text-inverse, white);
    text-decoration: none;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 2px;
    transition: background 0.2s;
}

.logout-link:hover {
    background: rgba(255,255,255,0.1);
}

/* Search Bar */
.search-container {
    position: relative;
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
}

.search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 6px 35px 6px 10px;
    border: 1px solid var(--color-border, #bdc7d8);
    border-radius: 2px;
    font-size: 12px;
    background: var(--color-card-background, white);
    color: var(--color-text, #333);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary, #3b5998);
}

.search-button {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    color: var(--color-text-secondary, #666);
}

.search-button:hover {
    color: #3b5998;
}

.search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-card-background, white);
    border: 1px solid var(--color-border, #bdc7d8);
    border-top: none;
    border-radius: 0 0 2px 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-autocomplete.show {
    display: block;
}

.autocomplete-item {
    padding: 10px;
    border-bottom: 1px solid var(--color-border-light, #e4e6eb);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.autocomplete-item:hover {
    background: var(--color-background, #f0f2f5);
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary, #3b5998);
    color: var(--color-text-inverse, white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.autocomplete-item-content {
    flex: 1;
    min-width: 0;
}

.autocomplete-item-title {
    font-weight: 600;
    color: #3b5998;
    font-size: 13px;
    margin-bottom: 2px;
}

.autocomplete-item-subtitle {
    font-size: 11px;
    color: var(--color-text-secondary, #666);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 20px;
}

/* Todo pages should not be constrained by main-container max-width */
.todo-main-container {
    max-width: none !important;
    padding: 0 !important; /* Remove padding for todo pages - handled by inner elements */
}

/* Sidebar */
.sidebar {
    width: 200px;
    background: var(--color-card-background, white);
    border-radius: 3px;
    padding: 15px;
    height: fit-content;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.sidebar-section h3 {
    font-size: 13px;
    color: var(--color-text, #333);
    margin-bottom: 10px;
    font-weight: bold;
}

.sidebar-section ul {
    list-style: none;
}

.sidebar-section ul li {
    margin-bottom: 5px;
}

.sidebar-section ul li a {
    color: #3b5998;
    text-decoration: none;
    font-size: 12px;
    display: block;
    padding: 5px 0;
}

.sidebar-section ul li a:hover {
    text-decoration: underline;
}

/* Main Content */
.main-content {
    flex: 1;
    min-width: 0;
}

/* Cards and Containers */
.card {
    background: var(--color-card-background, white);
    border-radius: 3px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Remove white background from cards on todo pages for better contrast */
.task-page .card {
    background: transparent;
    box-shadow: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 4px 8px;
    background: var(--color-primary, #3b5998);
    color: var(--color-text-inverse, white);
    text-decoration: none;
    border: none;
    border-radius: 2px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn:hover {
    background: var(--color-primary-hover, #2d4373);
}

.btn-secondary {
    background: var(--color-button-secondary, #e4e6eb);
    color: var(--color-text, #333);
}

.btn-secondary:hover {
    background: var(--color-button-secondary-hover, #d0d2d6);
}

/* Forms */
.form-actions {
    margin-top: 0px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.edit-form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 12px;
    color: var(--color-text, #333);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--color-border, #bdc7d8);
    border-radius: 2px;
    font-size: 12px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Auto-resize comment textarea - starts at 1 line, grows with content */
.comment-textarea.auto-resize {
    resize: none;
    overflow: hidden;
    min-height: 1.5em;
    line-height: 1.5;
    height: auto;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary, #3b5998);
}

.error {
    color: var(--color-error, #d32f2f);
    font-size: 11px;
    margin-top: 5px;
}

.success {
    color: var(--color-success, #388e3c);
    font-size: 12px;
    padding: 10px;
    background: #e8f5e9;
    border-radius: 2px;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--color-card-background, white);
    border-top: 1px solid #e4e6eb;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
    color: var(--color-text-secondary, #666);
    font-size: 11px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        padding: 10px;
    }
    
    .sidebar {
        width: 100%;
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
    
    .header-container {
        flex-wrap: wrap;
        height: auto;
        padding: 10px;
    }
    
    .header-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-text, #333);
    margin-bottom: 10px;
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 16px;
}

h3 {
    font-size: 14px;
}

p {
    margin-bottom: 10px;
    font-size: 12px;
}

/* Links */
a {
    color: #3b5998;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.hidden {
    display: none;
}

/* Permalink styling */
.post-permalink, .comment-permalink {
    color: #3b5998;
    text-decoration: none;
}

.post-permalink:hover, .comment-permalink:hover {
    text-decoration: underline;
}

/* See all comments link */
.see-all-comments {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.see-all-comments-link {
    color: #3b5998;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.see-all-comments-link:hover {
    text-decoration: underline;
}

/* Wall Container */
.wall-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.wall-header {
    margin-bottom: 20px;
}

.wall-header h2 {
    margin: 0 0 5px 0;
    color: #3b5998;
}

.wall-description {
    color: var(--color-text-secondary, #666);
    font-size: 14px;
}

/* Post Item */
.post-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 10px;
    margin-bottom: 10px;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    position: relative;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar, .comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder, .comment-avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary, #3b5998);
    color: var(--color-text-inverse, white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.author-info strong {
    display: block;
    color: #3b5998;
}

.author-info strong a {
    color: #3b5998;
    text-decoration: none;
}

.author-info strong a:hover {
    text-decoration: underline;
}

.post-time {
    font-size: 12px;
    color: #999;
}

.comment-time {
    font-size: 10px;
    color: #999;
    display: block;
    margin-top: 2px;
}

.comment-time a,
.comment-time .comment-permalink {
    color: #999;
    text-decoration: none;
}

.comment-time a:hover,
.comment-time .comment-permalink:hover {
    text-decoration: underline;
    color: var(--color-text-secondary, #666);
}

.post-content {
    margin: 8px 0;
    line-height: 1.4;
    font-size: 13px;
}

.post-content p {
    margin: 0;
}

.post-actions {
    border-top: 1px solid #eee;
    padding-top: 8px;
    margin-top: 8px;
}

.post-stats {
    font-size: 11px;
    color: var(--color-text-secondary, #666);
    margin-bottom: 6px;
}

.action-buttons {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    justify-content: flex-start;
}

.btn-like, .btn-comment-toggle {
    background: var(--color-background, #f0f2f5);
    border: 1px solid #ccd0d5;
    border-radius: 2px;
    color: #3b5998;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-like:hover, .btn-comment-toggle:hover {
    background: var(--color-button-secondary, #e4e6eb);
    text-decoration: none;
}

.btn-like.liked {
    background: #e7f3ff;
    border-color: #1877f2;
    color: #1877f2;
}

.btn-like:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Comment Like Button - matches .btn-like styling for consistency */
.btn-like-comment {
    background: var(--color-background, #f0f2f5);
    border: 1px solid #ccd0d5;
    border-radius: 2px;
    color: #3b5998;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-like-comment:hover {
    background: var(--color-button-secondary, #e4e6eb);
    text-decoration: none;
}

.btn-like-comment.liked {
    background: #e7f3ff;
    border-color: #1877f2;
    color: #1877f2;
    font-weight: 600;
}

.btn-like-comment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.comment-like-section {
    display: inline-block;
    margin-left: 6px;
    font-size: 11px;
}

.comment-like-count {
    color: var(--color-text-secondary, #666);
    margin-right: 4px;
    font-size: 11px;
}

.comments-section {
    margin-top: 2px;
    padding-top: 0;
}

.comment-item {
    margin-bottom: 10px;
}

.comment-author {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

.comment-avatar, .comment-avatar-placeholder {
    width: 32px;
    height: 32px;
}

.comment-content {
    flex: 1;
}

.comment-content strong {
    color: #3b5998;
    margin-right: 5px;
}

.comment-content strong a {
    color: #3b5998;
    text-decoration: none;
}

.comment-content strong a:hover {
    text-decoration: underline;
}

.comment-text {
    display: block;
    margin: 2px 0;
    font-size: 12px;
    line-height: 1.4;
}

.btn-delete, .btn-delete-comment {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 20px;
    padding: 0 5px;
    line-height: 1;
}

.btn-delete:hover, .btn-delete-comment:hover {
    color: var(--color-error, #d32f2f);
}

.btn-edit-post, .btn-edit-comment {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    padding: 0 5px;
    line-height: 1;
}

.btn-edit-post:hover, .btn-edit-comment:hover {
    color: #3b5998;
}

/* Edit form styles */
.edit-post-form, .edit-comment-form {
    width: 100%;
    margin: 8px 0;
}

.edit-post-textarea, .edit-comment-textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--color-border, #bdc7d8);
    border-radius: 2px;
    font-size: 13px;
    font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
    line-height: 1.4;
    resize: none;
    overflow-y: auto;
    min-height: 60px;
    max-height: 400px;
    box-sizing: border-box;
}

.edit-post-textarea {
    min-height: 80px;
}

.edit-comment-textarea {
    min-height: 60px;
}

.edit-form-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.btn-save {
    background: var(--color-primary, #3b5998);
    color: var(--color-text-inverse, white);
    border: 1px solid #3b5998;
    border-radius: 2px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-save:hover {
    background: var(--color-primary-hover, #2d4373);
}

.post-actions-menu, .comment-actions-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: 5px;
    right: 5px;
}

.delete-post-form, .delete-comment-form {
    display: inline;
}

.permalink-context {
    font-size: 12px;
    color: var(--color-text-secondary, #666);
    margin-top: 5px;
}

/* Cover Photo Styling */
.cover-photo-container {
    position: relative;
    width: calc(100% + 30px); /* Extend beyond card padding (15px on each side) */
    height: 200px; /* Reduced from 300px by 1/3 for medium/large screens */
    margin-left: -15px; /* Offset card left padding */
    margin-right: -15px; /* Offset card right padding */
    margin-top: -15px; /* Offset card top padding */
    margin-bottom: 20px;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
    background: var(--color-primary, #3b5998);
}

.wall-container .cover-photo-container {
    width: calc(100% + 40px); /* Extend beyond wall-container padding (20px on each side) */
    margin-left: -20px; /* Offset wall-container left padding */
    margin-right: -20px; /* Offset wall-container right padding */
    margin-top: -20px; /* Offset wall-container top padding */
}

.cover-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Center the image horizontally */
    display: block;
}

.permalink-context a {
    color: #3b5998;
    text-decoration: none;
}

.permalink-context a:hover {
    text-decoration: underline;
}

/* Custom Tooltip Styles - Facebook 2006-08 style */
.custom-tooltip {
    position: fixed;
    background: #333;
    color: var(--color-text-inverse, white);
    padding: 5px 8px;
    border-radius: 2px;
    font-size: 11px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10001;
    display: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
    line-height: 1.3;
    max-width: 200px;
    word-wrap: break-word;
}

.custom-tooltip.show {
    display: block;
}

/* Arrow removed - tooltip is a clean box */

/* ============================================
   Tasks Styles
   ============================================ */

/* Tasks Table */
.todo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.todo-table th {
    background: #f0f0f0;
    padding: 8px;
    text-align: left;
    border-bottom: 2px solid #ddd;
    font-weight: bold;
    color: #333;
}

.todo-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.todo-table tr:hover {
    background: #f9f9f9;
}

/* Priority Indicators */
.priority-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

.priority-bug { background: lightgray; }
.priority-abandoned { background: black; }
.priority-wishlist { background: lightgreen; }
.priority-low { background: yellow; }
.priority-med { background: orange; }
.priority-high { background: red; }
.priority-ubn { background: purple; }

/* Task Links */
.todo-link {
    color: #3b5998;
    text-decoration: none;
}

.todo-link:hover {
    text-decoration: underline;
}

/* Task Page Styles */
.todo-page,
.todo-page,
.todo-create-page,
.todo-search-page {
    padding: 20px;
}

/* Task Attributes Form */
.todo-attributes-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

/* Task Comments */
.todo-comment {
    padding: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.todo-comment:last-child {
    border-bottom: none;
}

/* Task comment content styling - scoped to task comments only */
.todo-comment .comment-content {
    white-space: pre-wrap !important;
    word-wrap: break-word;
    text-indent: 0 !important;
    margin: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* Prevent any indentation in comment content child elements */
.todo-comment .comment-content * {
    text-indent: 0 !important;
    margin-left: 0 !important;
}

/* Ensure first line has no indent */
.todo-comment .comment-content::first-line {
    text-indent: 0 !important;
}

/* Editable Fields */
.todo-title-editable,
.todo-description-editable {
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: background 0.2s;
}

/* Todo Description specific styles - prevent any indentation */
.todo-description-editable {
    padding: 10px;
    min-height: 100px;
    cursor: text;
    white-space: pre-wrap !important;
    word-wrap: break-word;
    text-indent: 0 !important;
    margin: 0 !important;
    margin-left: 0 !important;
    padding-left: 10px !important;
    background: white;
    font-size: 14px;
}

.todo-title-editable:hover,
.todo-description-editable:hover {
    background: #f5f5f5;
}

.todo-title-editable.editing,
.todo-description-editable.editing {
    border-color: #3b5998;
    background: #fff;
}

/* Contenteditable styling - prevent unwanted formatting */
.todo-description-editable[contenteditable="true"] {
    outline: none;
    text-indent: 0;
    margin: 0;
    padding: 10px;
    white-space: pre-wrap !important;
}

/* Prevent browser from adding unwanted formatting */
.todo-description-editable[contenteditable="true"] * {
    text-indent: 0;
    margin: 0;
}

/* Ensure first line has no indent */
.todo-description-editable[contenteditable="true"]::first-line {
    text-indent: 0;
}

/* Prevent any indentation in child elements */
.todo-description-editable * {
    text-indent: 0 !important;
    margin-left: 0 !important;
}

/* Ensure first character is not indented */
.todo-description-editable::first-line {
    text-indent: 0 !important;
}

/* Tasks Filter Form */
.todo-filter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

/* Search Results */
.search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f9f9f9;
}

/* Task Create Form */
.todo-create-form {
    max-width: 600px;
}

/* Compact form styles (Facebook 2006-08 style) */
.todo-page .card,
.todo-page .card,
.todo-create-page .card,
.todo-search-page .card {
    padding: 10px;
    margin-bottom: 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .todo-table {
        font-size: 11px;
    }
    
    .todo-table th,
    .todo-table td {
        padding: 5px;
    }
    
    .todo-filter-form {
        flex-direction: column;
    }
    
    .todo-filter-form > * {
        width: 100%;
    }
}

/* Upload Progress Bar Styles - Facebook 2006-08 Design */
.upload-progress-container {
    display: none;
    margin-top: 8px;
    margin-bottom: 8px;
}

.upload-progress-bar {
    height: 100%;
    background: #3b5998;
    width: 0%;
    transition: width 0.3s;
}

.upload-progress-text {
    font-size: 11px;
    color: #666;
    min-width: 50px;
    text-align: right;
}

.upload-progress-status {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
}

