/* thumbnail-checker.css - simple styling used by template/plugin */

.ytthumb-container {
  background: rgba(255,255,255,0.04);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  /* max-width: 1100px; */
  /* margin: 0 auto 30px; */
}
.ytthumb-label { display:block; font-weight:600; margin-bottom:8px; color:#fff; }
.ytthumb-input-file { width:100%; padding:10px; border-radius:8px; border:1px solid #ddd; background:#fff; }
.ytthumb-loading { display:flex; gap:12px; align-items:center; margin-top:18px; }
.yt-loader {
  width:44px;
  height:44px;
  border-radius:50%;
  border:5px solid rgba(0,0,0,0.08);
  border-top-color: #b00020;
  animation: ytspin 1s linear infinite;
}
@keyframes ytspin { to { transform: rotate(360deg); } }

.suggestion-container2 { display:flex; gap:20px; align-items:flex-start; margin-top:18px; }
.ytthumb-preview { width:430px; max-width:40%; border-radius:8px; box-shadow:0 6px 18px rgba(0,0,0,0.12); }
.yt-step-card { flex:1; background:#f7fbff; border-left:4px solid #ff4b2b; padding:16px; border-radius:8px; color:#111; }
.yt-step-title { font-weight:700; margin-bottom:4px; }
.yt-step-instruction { margin:0 0 8px; color:#333; }
.yt-summary { margin-bottom:10px; }
.yt-background-tips { padding:10px; border-radius:6px; margin-top:12px; }
.ytthumb-error { background: #37336700; color:#b00020; padding:12px; border-radius:6px; margin-top:12px; }
.not-logged-in-box { background:#37336700; padding:16px; border-radius:8px; text-align:center; }
.yt-score-breakdown {
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 2PX !important;
}
.yt-score-breakdown ul {
  margin: 0;
  padding-left: 20px;
}
.yt-score-breakdown li {
  margin-bottom: 6px;
}
.login-signup {
    background-color: #ff445d;
    border-color: #ff445d;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .suggestion-container2 {
    display: flex
;
    gap: 20px;
    align-items: flex-start;
    margin-top: 18px;
    flex-direction: column;
}
.ytthumb-preview {
    width: 562px;
    max-width: 84%;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
}
@media (min-width: 320px) and (max-width: 490px) {
  .suggestion-container2 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 18px;
    flex-direction: column;
}
.ytthumb-preview {
    width: 562px;
    max-width: 84%;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.thumbnail-score-sections {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 266px !important;
}
}
#ytthumb-loading {
    display: flex;
    flex-direction: column;
}
.ytthumb-score-box {
    margin-top: 20px;
    display: flex !important;
}
.thumbnail-score-box {
    flex: 1;
    background: #f7fbff;
    border-left: 4px solid #ff4b2b;
    padding: 16px;
    border-radius: 8px;
    color: #111;
}
.thumbnail-score-sections {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 747px;
}
.youtube-thumbnail-s {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.youtube-thumbnail-td, .youtube-thumbnail-th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.youtube-thumbnail-tr:nth-child(even) {
  background-color: #dddddd;
}
.yt-step-list {
  padding-left: 15px;
  margin-bottom: -4px;
}
.progress-bar {
  background-color: #ff4b2b;
}
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    padding-left: 40px;
    padding-right: 40px;
}
 @import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
    body {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Montserrat', sans-serif;
    }
    .form-container {
        width: 100vw;
        height: 100vh;
        background-color: #7b2cbf;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .upload-files-container {
        padding: 30px 60px;
        border-radius: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .drag-file-area {
        border: 2px dashed #ff4749;
        border-radius: 40px;
        margin: 10px 0 15px;
        padding: 30px 50px;
        text-align: center;
        width: 540px;
    }
    .drag-file-area .upload-icon {
        font-size: 50px;
    }
    .drag-file-area h3 {
        font-size: 26px;
        margin-top: 15px;
        margin-bottom: 22px;
    }
    .drag-file-area label {
        font-size: 19px;
    }
    .drag-file-area label .browse-files-text {
        color: #ff4749;
        font-weight: bolder;
        cursor: pointer;
    }
    .browse-files span {
        position: relative;
        top: -25px;
    }
    .default-file-input {
        opacity: 0;
    }
    .cannot-upload-message {
        background-color: #ffc6c4;
        font-size: 17px;
        display: flex;
        align-items: center;
        margin: 5px 0;
        padding: 5px 10px 5px 30px;
        border-radius: 5px;
        color: #BB0000;
        display: none;
    }
    @keyframes fadeIn {
        0% {opacity: 0;}
        100% {opacity: 1;}
    }
    .cannot-upload-message span, .upload-button-icon {
        padding-right: 10px;
    }
    .cannot-upload-message span:last-child {
        padding-left: 20px;
        cursor: pointer;
    }
    .file-block {
        color: #f7fff7;
        background-color: #7b2cbf;
        transition: all 1s;
        width: 390px;
        position: relative;
        display: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 10px 0 15px;
        padding: 10px 20px;
        border-radius: 25px;
        cursor: pointer;
    }
    .file-info {
        display: flex;
        align-items: center;
        font-size: 15px;
    }
    .file-icon {
        margin-right: 10px;
    }
    .file-name, .file-size {
        padding: 0 3px;
    }
    .remove-file-icon {
        cursor: pointer;
    }
    .progress-bar {
        display: flex;
        /* position: absolute; */
        bottom: 0;
        left: 4.5%;
        width: 0;
        height: 24px;
        border-radius: 25px;
        background-color: #4BB543;
    }
    .progress {
          height: 25px;
    }
    .upload-button {
        font-family: 'Montserrat';
        background-color: #ff4749;
        color: #f7fff7;
        display: flex;
        align-items: center;
        font-size: 18px;
        border: none;
        border-radius: 20px;
        margin: 10px;
        padding: 7.5px 50px;
        cursor: pointer;
    }
    /* Ensure compatibility with existing styles */
    .ytthumb-loading, .ytthumb-error {
        margin-top: 20px;
    }
    .ytthumb-preview {
        max-width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    .more-analyze-thumbnail {
          background-color: #ff4749;
    border-color: #ff4749;
    gap: 15px;
    display: flex;
    }
    .material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    width: 12px !important;
    min-width: 13px;
    max-width: 25px;
    display: grid;
    align-content: center;
    justify-items: end;
}
.material-icons-outlined {
  display: inline !important;
}