/* 資料上傳頁面專屬樣式 */
main {
  font-size: 20px;
  letter-spacing: 1px;
}

h1 {
  color: #004F74;
  font-size: 35px;
  font-weight: bold;
}

/* 參考 page-cc-authorization.css */
      .verification-container {
        max-width: 400px;
        margin: auto;
        text-align: center;
      }
      
      .verification-container img {
        max-width: 100%;
        height: auto;
      }
      
      .verification-container .btn-primary {
        margin-top: 20px;
        width: 70%;
        max-width: 70%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        background-color: #038FC7;
        border-color: #038FC7;
      }
      
      .main-title {
        color: #004F74;
        font-size: 35px;
        font-weight: bold;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
      }
      
      .upload-instruction {
        margin-bottom: 30px;
      }
      
      .upload-container {
        width: 100%;
        margin-bottom: 30px;
      }
      
      .upload-box {
        border: 2px dashed #0097e0;
        border-radius: 10px;
        padding: 40px 20px;
        margin: 15px 0;
        text-align: center;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
        background-color: rgba(0, 151, 224, 0.05);
      }
      
      .upload-box:hover {
        background-color: rgba(0, 151, 224, 0.1);
      }
      
      .upload-box input[type="file"] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
      }
      
      /* 移除不再需要的 file-preview 樣式 */
      
      .upload-content {
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        background-image: url('/assets/img/cloud-computing.png');
        background-repeat: no-repeat;
        background-position: center top;
        background-size: contain;        
        padding-top:60px;
        padding-bottom:60px;
      }
      
      .upload-box {
        background-image: none;
      }
      
      .upload-icon {
        display: none; /* 隱藏原來的SVG圖示 */
      }
      
      .upload-title {
        font-size: 24px;
        font-weight: bold;
        color: #004F74;
        margin: 0; /* 移除邊距以便完全置中 */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        cursor: pointer; /* 顯示為可點擊 */
        z-index: 10; /* 確保在檔案輸入框的上層 */
        padding: 15px 0; /* 增加點擊區域 */
      }
      
      .upload-title:hover {
        color: #0077b6; /* 滑鼠懸停時變色 */
      }
      
      .upload-subtitle {
        color: #666;
        margin-bottom: 15px;
      }
      
      .file-status {
        display: none;
        margin-top: 10px;
        padding: 8px;
        border-radius: 5px;
        background-color: #e8f4f9;
      }
      
      .file-status.success {
        color: #28a745;
        background-color: #d4edda;
        border: 1px solid #c3e6cb;
      }
      
      .file-status.error {
        color: #dc3545;
        background-color: #f8d7da;
        border: 1px solid #f5c6cb;
      }