.stu-container {
    max-width: var(--unified-max-width);
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 20px;
}

.main-content {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
.stu-sidebar {
    display: none;
    width: 280px;
    background: transparent;
    padding: 0;
    height: fit-content;
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}
.profile-info .name-id {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.profile-info h2 {
    font-size: 24px;
    color: #333;
    margin: 0;
}
.profile-info .id {
    color: #666;
    font-size: 14px;
}
.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.tag {
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
.tag.primary {
    background-color: #ff7f32;
    color: white;
}
.tag.teal {
    background-color: #1abc9c;
    color: white;
}
.tag.orange {
    background-color: #ff9500;
    color: white;
}
.tag.green {
    background-color: #28a745;
    color: white;
}
.salary {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}
.description {
    margin-bottom: 30px;
}
.description p {
    line-height: 1.6;
    color: #666;
    letter-spacing: 0.5px;
}
.actions {
    display: flex;
    gap: 15px;
}
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.btn-favorite {
    background-color: #ff9999;
    color: white;
}
.btn-favorite:hover {
    background-color: #ff7777;
}
.btn-apply {
    background-color: #1abc9c;
    color: white;
}
.btn-apply:hover {
    background-color: #16a085;
}
.btn-contact {
    background-color: #28a745;
    color: white;
    min-width: fit-content;
    white-space: nowrap;
}
.btn-contact:hover {
    background-color: #218838;
}
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
@media (max-width: 768px) {
    .stu-container {
        flex-direction: column;
        padding: 10px;
        gap: 15px;
    }
    .stu-sidebar {
        width: 100%;
        order: 2;
    }
    .main-content {
        order: 1;
    }
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .profile-avatar {
        width: 80px;
        height: 80px;
        align-self: center;
    }
    .profile-info .name-id {
        justify-content: center;
    }
    .tags {
        justify-content: center;
    }
    .actions {
        flex-direction: column;
        gap: 10px;
    }
    .btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .stu-container {
        padding: 8px;
    }
    .main-content {
        padding: 15px;
    }
    .profile-info h2 {
        font-size: 20px;
    }
    .tag {
        padding: 4px 12px;
        font-size: 12px;
    }
    .btn {
        padding: 12px;
        font-size: 14px;
    }
    .profile-avatar {
        width: 70px;
        height: 70px;
    }
}
.order-show-page .alert-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

.order-show-page .alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.order-show-page .alert-error ul {
    margin: 0;
    padding-left: 20px;
}

.order-show-page .detail-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.order-show-page .profile-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.order-show-page .profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-right: 20px;
}

.order-show-page .profile-info {
    flex: 1;
    word-break: break-word;
}

.order-show-page .profile-info .name-id {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    word-break: break-word;
}

.order-show-page .profile-info h2 {
    margin: 0;
    font-size: 20px;
    word-break: break-word;
}

.order-show-page .profile-info .id {
    margin-left: 15px;
    color: #666;
    font-size: 14px;
    word-break: break-word;
}

.order-show-page .tags {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.order-show-page .tag {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.order-show-page .tag.primary {
    background-color: #FF7F32;
    color: white;
}

.order-show-page .tag.teal {
    background-color: #1ABC9C;
    color: white;
}

.order-show-page .tag.green {
    background-color: #28A745;
    color: white;
}

.order-show-page .location-info {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    word-break: break-word;
}

.order-show-page .location-info img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
    flex-shrink: 0;
}

.order-show-page .address-location {
    word-break: break-word;
}

.order-show-page .description {
    word-break: break-word;
    flex: 1;
}

.order-show-page .description p {
    line-height: 1.6;
    color: #333;
    word-break: break-word;
}

.order-show-page .actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.order-show-page .btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

.order-show-page .btn-favorite {
    background-color: #FF9999;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.order-show-page .btn-apply {
    background-color: #1ABC9C;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    display: none;
}

.order-show-page .btn-contact {
    background-color: #28A745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.order-show-page .collection-form {
    display: none;
}

.order-show-page .resume-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.order-show-page .modal-content {
    background-color: white;
    width: 60%;
    max-width: 600px;
    border-radius: 8px;
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
}

.order-show-page .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.order-show-page .modal-title {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.order-show-page .modal-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.order-show-page .step-indicator {
    margin-bottom: 20px;
    display: none;
}

.order-show-page .step-indicator .step-active {
    color: #FF6600;
}

.order-show-page .step-indicator .step-separator {
    color: #ccc;
    margin: 0 10px;
}

.order-show-page .step-indicator .step-inactive {
    color: #999;
}

.order-show-page .contact-list-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-show-page .option-item {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.order-show-page .option-item input[type="radio"] {
    margin-right: 10px;
}

.order-show-page .agreement-container {
    margin-top: 15px;
    margin-bottom: 15px;
}

.order-show-page .agreement-container label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.order-show-page .agreement-checkbox {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.order-show-page .agreement-text {
    font-size: 14px;
    color: #666;
}

.order-show-page .agreement-link {
    color: #1ABC9C;
    text-decoration: underline;
    cursor: pointer;
}

.order-show-page .agreement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.order-show-page .agreement-modal-content {
    background-color: white;
    width: 70%;
    max-width: 800px;
    border-radius: 8px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.order-show-page .agreement-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.order-show-page .agreement-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.order-show-page .agreement-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    line-height: 1.6;
    font-size: 14px;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.order-show-page .agreement-modal-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.order-show-page .agree-btn {
    background-color: #1ABC9C;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.order-show-page .resume-list-container {
    display: none;
}

.order-show-page .resume-list-title {
    color: #FF6600;
    margin-bottom: 15px;
}

.order-show-page .resume-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-show-page .confirm-resume-btn {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.order-show-page .next-step-container {
    margin-top: 20px;
    text-align: center;
}

.order-show-page .next-step-btn {
    background-color: #1ABC9C;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
