/*
Theme Name: SHVL
Author: Shevify LLC
Author URI: https://www.shevify.com
Description: -
Version: 1.0
Template: ewebot
*/
@import url("../ewebot/style.css");


/* =========================
   My Videos Dashboard Styles
   ========================= */

.my-videos-dashboard {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.video-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    background-color: #fafafa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.video-card:hover {
    transform: translateY(-3px);
}

.video-card h3 {
    margin-top: 0;
    font-size: 1.2em;
}

/* Status badge base */
.video-status {
    padding: 4px 10px;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 0.8em;
    text-transform: uppercase;
}

/* Status colors */
.video-status.pending {
    background-color: #f39c12;
}

.video-status.editor-assigned {
    background-color: #3498db;
}

.video-status.editing {
    background-color: #9b59b6;
}

.video-status.awaiting-review {
    background-color: #e67e22;
}

.video-status.completed {
    background-color: #2ecc71;
}

/* Links */
.video-card a {
    color: #3498db;
    text-decoration: none;
}

.video-card a:hover {
    text-decoration: underline;
}

.video-card p {
    margin: 6px 0;
    font-size: 0.95em;
}
